nightdiamond-cursors: init at 0-unstable-2025-09-23 (#445728)

authored by h7x4 and committed by GitHub 659e1897 c67bf60f

+38
+6
maintainers/maintainer-list.nix
··· 22924 22924 githubId = 92817635; 22925 22925 name = "Sanskar Gurdasani"; 22926 22926 }; 22927 + santosh = { 22928 + email = "santoshxshrestha@gmail.com"; 22929 + name = "Santosh Shrestha"; 22930 + github = "santoshxshrestha"; 22931 + githubId = 182977126; 22932 + }; 22927 22933 sarahec = { 22928 22934 email = "seclark@nextquestion.net"; 22929 22935 github = "sarahec";
+32
pkgs/by-name/ni/nightdiamond-cursors/package.nix
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + }: 6 + 7 + stdenvNoCC.mkDerivation { 8 + pname = "nightdiamond-cursors"; 9 + version = "0-unstable-2025-09-23"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "santoshxshrestha"; 13 + repo = "NightDiamond-cursors"; 14 + rev = "3ff3c0486430a4901b4d5cbbee87a370aa2b8ce9"; 15 + hash = "sha256-huruHo5w7Qrte1+nIiz+P1xPNDGrv5/eByHwaSlZYwQ="; 16 + }; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + mkdir -p $out/share/icons 21 + cp -r NightDiamond-* $out/share/icons/ 22 + runHook postInstall 23 + ''; 24 + 25 + meta = { 26 + homepage = "https://github.com/santoshxshrestha/NightDiamond-cursors"; 27 + description = "NightDiamond cursor themes"; 28 + license = lib.licenses.gpl3Only; 29 + platforms = lib.platforms.linux; 30 + maintainers = with lib.maintainers; [ santosh ]; 31 + }; 32 + }