mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
11 lines
338 B
Nix
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=";
|
|
};
|
|
});
|
|
}
|