Flake: package kasane teto cursor theme

This commit is contained in:
Toast 2024-09-18 14:01:02 +02:00
parent 4872cdfb98
commit f551e27127
2 changed files with 19 additions and 0 deletions

View file

@ -132,6 +132,7 @@
x86_64-linux = with import nixpkgs-unstable-raw {system = "x86_64-linux";}; {
anything-sync-daemon = callPackage ./pkgs/anything-sync-daemon {};
discord-krisp-fixer = callPackage ./pkgs/discord-krisp-fixer {};
kasane-teto-cursor = callPackage ./pkgs/kasane-teto-cursor {};
};
};
nixosConfigurations = let

18
pkgs/kasane-teto-cursor Normal file
View file

@ -0,0 +1,18 @@
{
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation {
name = "kasane-teto-cursors";
src = fetchzip {
url = "http://dl.everest.tailscale/Kasane%20Teto%20Cursor%20-%20by%20wobb.zip";
hash = "sha256-4neZqApkK6hwufLTilUtPmgzyBih7onSdSZ9lezQbIU=";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/icons
cp -dr --no-preserve='ownership' $src/Linux/Kasane\ Teto $out/share/icons
'';
}