nix-config/packages/miku-cursor.nix
2025-01-20 16:35:31 +01:00

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
'';
}