nix-config/overlays/phinger-cursors.nix
2024-05-12 11:55:47 -04:00

11 lines
338 B
Nix

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";
hash = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc=";
};
});
}