diff options
Diffstat (limited to 'hyprgraphics.nix')
-rw-r--r-- | hyprgraphics.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hyprgraphics.nix b/hyprgraphics.nix new file mode 100644 index 0000000..0ccbf3e --- /dev/null +++ b/hyprgraphics.nix @@ -0,0 +1,14 @@ +{ inputs }: +self: super: { + hyprgraphics = + with super; + (hyprgraphics.override { }).overrideAttrs (old: rec { + version = "git"; + src = fetchGit { + url = "https://github.com/hyprwm/hyprgraphics"; + ref = "main"; + # rev = "0d77b4895ad5f1bb3b0ee43103a5246c58b65591"; + }; + buildInputs = old.buildInputs ++ [ libspng ]; + }); +} |