mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-01 12:46:14 +01:00
65c815d155
2.0 introduces some kind of breaking change that results in the cursor appearing larger than usual, which I haven't been able to find an answer for. The 1.1 cursor has been great already, so I'll probably stick with that until further notice.
11 lines
340 B
Nix
11 lines
340 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";
|
|
sha256 = "sha256-II+1x+rcjGRRVB8GYkVwkKVHNHcNaBKRb6C613901oc=";
|
|
};
|
|
});
|
|
}
|