From 8fb2ebe0507d85d597a31d26f6547cf1a022c4f1 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 18 Apr 2024 20:01:36 -0400 Subject: [PATCH] phinger-cursors: Downgrade from 2.0 to 1.1 Not sure why but apparently this new version of phinger-cursors broke the cursor theme in Hyprland. Downgrading solves the problem, and I don't really have a need for a "new and improved" cursor theme. --- overlays/phinger-cursors.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 overlays/phinger-cursors.nix diff --git a/overlays/phinger-cursors.nix b/overlays/phinger-cursors.nix new file mode 100644 index 00000000..d3744073 --- /dev/null +++ b/overlays/phinger-cursors.nix @@ -0,0 +1,10 @@ +final: prev: { + phinger-cursors = prev.phinger-cursors.overrideAttrs (oldAttrs: rec { + version = "1.1"; + + src = prev.fetchurl { + url = "https://github.com/phisch/phinger-cursors/releases/download/v${version}/phinger-cursors-variants.tar.bz2"; + sha256 = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc="; + }; + }); +}