summaryrefslogtreecommitdiff
path: root/hyprutils.nix
blob: 1cd2156712a4c574ba768740ea224f3f3ac0be6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ inputs }:
self: super: {
  hyprutils =
    with super;
    (hyprutils.override { }).overrideAttrs (old: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/hyprwm/hyprutils";
        ref = "main";
#        rev = "2cd5e4fcd5a77f5c7ebc3f6afac4a86336c31281";
      };
    });
}