mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 03:19:37 +01:00
18 lines
345 B
Nix
18 lines
345 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=";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir $out
|
|
'';
|
|
|
|
}
|