mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-12-22 06:59:48 +01:00
xtra-dispatchers: add nix
This commit is contained in:
parent
2a01b29098
commit
067bbc9eab
3 changed files with 24 additions and 3 deletions
|
@ -145,11 +145,11 @@
|
|||
"xdph": "xdph"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1734451958,
|
||||
"narHash": "sha256-PGBoai3Q+oOYpobj5iPFB5j+F1SEPIQn7uMm8ipCYhI=",
|
||||
"lastModified": 1734808910,
|
||||
"narHash": "sha256-p3b1pgacsB7zVGa/VFsMu7U8FN4Jy0okZSI8TribLTg=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "Hyprland",
|
||||
"rev": "bd7092a9feb39275a9eb1426046a46671e0fe580",
|
||||
"rev": "57921d7dbd1b87a9474f609cb9cd30e6174027cd",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
hyprexpo
|
||||
hyprtrails
|
||||
hyprwinwrap
|
||||
xtra-dispatchers
|
||||
;
|
||||
});
|
||||
|
||||
|
@ -55,6 +56,7 @@
|
|||
hyprexpo = callPackage ./hyprexpo {};
|
||||
hyprtrails = callPackage ./hyprtrails {};
|
||||
hyprwinwrap = callPackage ./hyprwinwrap {};
|
||||
xtra-dispatchers = callPackage ./xtra-dispatchers {};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
19
xtra-dispatchers/default.nix
Normal file
19
xtra-dispatchers/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
lib,
|
||||
hyprland,
|
||||
hyprlandPlugins,
|
||||
}:
|
||||
hyprlandPlugins.mkHyprlandPlugin hyprland {
|
||||
pluginName = "xtra-dispatchers";
|
||||
version = "0.1";
|
||||
src = ./.;
|
||||
|
||||
inherit (hyprland) nativeBuildInputs;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/hyprwm/hyprland-plugins";
|
||||
description = "Hyprland extra dispatchers plugin";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue