blob: a313d53c5065e3988a93cca9380b2b6a6e940ad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ inputs }:
self: super: {
aquamarine =
with super;
(aquamarine.override { }).overrideAttrs (old: rec {
version = "git";
src = fetchGit {
url = "https://github.com/hyprwm/aquamarine";
ref = "main";
# rev = "7fe006981fae53e931f513026fc754e322f13145";
};
# patches = old.patches ++ [ "/etc/nixos/patches/aquamarine/bit_depth.patch" ];
# patches = [ /home/sss/nix/patches/aquamarine/bit_depth.patch ];
});
}
|