nightdiamond: init at 0-unstable-2025-09-23

nightdiamond-cursors: fix maintainer attribute

nightdiamond-cursors: fix the location and renamed the file
This commit is contained in:
santoshxshrestha
2025-09-24 16:35:38 +05:45
parent 49e55a2f70
commit d20b0897de
@@ -0,0 +1,32 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "nightdiamond-cursors";
version = "0-unstable-2025-09-23";
src = fetchFromGitHub {
owner = "santoshxshrestha";
repo = "NightDiamond-cursors";
rev = "3ff3c0486430a4901b4d5cbbee87a370aa2b8ce9";
hash = "sha256-huruHo5w7Qrte1+nIiz+P1xPNDGrv5/eByHwaSlZYwQ=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r NightDiamond-* $out/share/icons/
runHook postInstall
'';
meta = {
homepage = "https://github.com/santoshxshrestha/NightDiamond-cursors";
description = "NightDiamond cursor themes";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ santosh ];
};
}