diff options
author | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
commit | 188f69443c0873970d41217b52e11c46d584c06d (patch) | |
tree | eab9f51137f212c7bfe7e512490748dae371b698 /hyprgraphics.nix |
nix common overlays initial commit
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 ]; + }); +} |