summaryrefslogtreecommitdiff
path: root/hyprcursor.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hyprcursor.nix')
-rw-r--r--hyprcursor.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/hyprcursor.nix b/hyprcursor.nix
new file mode 100644
index 0000000..4469294
--- /dev/null
+++ b/hyprcursor.nix
@@ -0,0 +1,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;
+ };
+ });
+}