about summary refs log tree commit diff
path: root/pkgs/by-name/hy
diff options
context:
space:
mode:
authorAleksana <me@aleksana.moe>2024-04-24 17:32:56 +0800
committerGitHub <noreply@github.com>2024-04-24 17:32:56 +0800
commited0e28efccae72a10ae5b49f2d59c05a42453dbf (patch)
treec23be227c19017a47d3cdc8e9240d5bd381022d4 /pkgs/by-name/hy
parent4da334cea39255358737218667fef519134fd6f3 (diff)
parent72c2b8bc87bb0650b3dc545dd1846581bf33e63d (diff)
Merge pull request #305404 from kiike/pkgs/hyprland-activewindow
hyprland-activewindow: init at 1.0.1
Diffstat (limited to 'pkgs/by-name/hy')
-rw-r--r--pkgs/by-name/hy/hyprland-activewindow/package.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/by-name/hy/hyprland-activewindow/package.nix b/pkgs/by-name/hy/hyprland-activewindow/package.nix
new file mode 100644
index 0000000000000..bc061447d60f3
--- /dev/null
+++ b/pkgs/by-name/hy/hyprland-activewindow/package.nix
@@ -0,0 +1,24 @@
+{ lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "hyprland-activewindow";
+  version = "1.0.1";
+
+  src = fetchFromGitHub {
+    owner = "FieldOfClay";
+    repo = "hyprland-activewindow";
+    rev = "v${version}";
+    hash = "sha256-8pzm8uIyvlz4nHbxtmbMblFIj38M2VsenaKzJ9di1Do=";
+  };
+
+  cargoHash = "sha256-wIF0qa1dyZlcsLPL2TflFQFPm4Pe9TWHe1F2L1YccZ8=";
+
+  meta = with lib; {
+    description = "A multi-monitor-aware Hyprland workspace widget helper";
+    homepage = "https://github.com/FieldofClay/hyprland-activewindow";
+    license = licenses.mit;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ kiike donovanglover ];
+    mainProgram = "hyprland-activewindow";
+  };
+}