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