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

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