mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 07:00:21 +02:00
17 lines
345 B
Nix
17 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
|
|
'';
|
|
|
|
}
|