Skip to content

Commit 067bbc9

Browse files
committed
xtra-dispatchers: add nix
1 parent 2a01b29 commit 067bbc9

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
hyprexpo
3737
hyprtrails
3838
hyprwinwrap
39+
xtra-dispatchers
3940
;
4041
});
4142

@@ -55,6 +56,7 @@
5556
hyprexpo = callPackage ./hyprexpo {};
5657
hyprtrails = callPackage ./hyprtrails {};
5758
hyprwinwrap = callPackage ./hyprwinwrap {};
59+
xtra-dispatchers = callPackage ./xtra-dispatchers {};
5860
};
5961
};
6062

xtra-dispatchers/default.nix

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
lib,
3+
hyprland,
4+
hyprlandPlugins,
5+
}:
6+
hyprlandPlugins.mkHyprlandPlugin hyprland {
7+
pluginName = "xtra-dispatchers";
8+
version = "0.1";
9+
src = ./.;
10+
11+
inherit (hyprland) nativeBuildInputs;
12+
13+
meta = with lib; {
14+
homepage = "https://github.com/hyprwm/hyprland-plugins";
15+
description = "Hyprland extra dispatchers plugin";
16+
license = licenses.bsd3;
17+
platforms = platforms.linux;
18+
};
19+
}

0 commit comments

Comments
 (0)