hyprlandPlugins.hyprgrass: init at 0.7.0
This commit is contained in:
@@ -29,6 +29,7 @@ let
|
|||||||
{ hycov = import ./hycov.nix; }
|
{ hycov = import ./hycov.nix; }
|
||||||
{ hypr-dynamic-cursors = import ./hypr-dynamic-cursors.nix; }
|
{ hypr-dynamic-cursors = import ./hypr-dynamic-cursors.nix; }
|
||||||
{ hyprfocus = import ./hyprfocus.nix; }
|
{ hyprfocus = import ./hyprfocus.nix; }
|
||||||
|
{ hyprgrass = import ./hyprgrass.nix; }
|
||||||
{ hyprscroller = import ./hyprscroller.nix; }
|
{ hyprscroller = import ./hyprscroller.nix; }
|
||||||
{ hyprspace = import ./hyprspace.nix; }
|
{ hyprspace = import ./hyprspace.nix; }
|
||||||
(import ./hyprland-plugins.nix)
|
(import ./hyprland-plugins.nix)
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
mkHyprlandPlugin,
|
||||||
|
hyprland,
|
||||||
|
fetchFromGitHub,
|
||||||
|
cmake,
|
||||||
|
doctest,
|
||||||
|
meson,
|
||||||
|
ninja,
|
||||||
|
wf-touch,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkHyprlandPlugin hyprland rec {
|
||||||
|
pluginName = "hyprgrass";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "horriblename";
|
||||||
|
repo = "hyprgrass";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-DfM2BqnFW48NlHkBfC7ErHgK7WHlOgiiE+aFetN/yJ4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
doctest
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ wf-touch ];
|
||||||
|
|
||||||
|
dontUseCmakeConfigure = true;
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Hyprland plugin for touch gestures";
|
||||||
|
homepage = "https://github.com/horriblename/hyprgrass";
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user