diff --git a/flake.nix b/flake.nix index 15c5343..f6accae 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/pkgs/kasane-teto-cursor b/pkgs/kasane-teto-cursor new file mode 100644 index 0000000..af93194 --- /dev/null +++ b/pkgs/kasane-teto-cursor @@ -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 + ''; +}