mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 11:29:33 +01:00
14 lines
304 B
Nix
14 lines
304 B
Nix
|
{stdenv, fetchFromGitHub}:
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "miku-cursor-linux";
|
||
|
version = "1.2.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "supermariofps";
|
||
|
repo = "hatsune-miku-windows-linux-cursors";
|
||
|
rev = "v${1.2.6}";
|
||
|
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
|
||
|
};
|
||
|
|
||
|
}
|