everforest-cursors: init at 3212590527

This commit is contained in:
Stel Clementine
2025-10-20 20:10:07 +00:00
committed by Gaetan Lepage
parent 1a5b87fcd4
commit 7b3d110d40
@@ -0,0 +1,35 @@
{
lib,
stdenvNoCC,
fetchurl,
nix-update-script,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "everforest-cursors";
version = "3212590527";
src = fetchurl {
url = "https://github.com/talwat/everforest-cursors/releases/download/${finalAttrs.version}/everforest-cursors-variants.tar.bz2";
hash = "sha256-xXgtN9wbjbrGLUGYymMEGug9xEs9y44mq18yZVdbiuU=";
};
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r ./everforest-cursors* $out/share/icons
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Everforest cursor theme, based on phinger-cursors";
homepage = "https://github.com/talwat/everforest-cursors";
license = lib.licenses.cc-by-sa-40;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.stelcodes ];
};
})