summaryrefslogtreecommitdiff
path: root/hyprgraphics.nix
blob: 0ccbf3ec65bd4cfbb1a909eb2c17374a822557f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 ];
    });
}