rose-pine-hyprcursor: init at 0.3.2

Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>

John Titor d8d64f44 da261564

+40
+40
pkgs/by-name/ro/rose-pine-hyprcursor/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "rose-pine-hyprcursor"; 9 + version = "0.3.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "ndom91"; 13 + repo = "rose-pine-hyprcursor"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-ArUX5qlqAXUqcRqHz4QxXy3KgkfasTPA/Qwf6D2kV0U="; 16 + }; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + mkdir -p $out/share/icons/rose-pine-hyprcursor 22 + cp -R . $out/share/icons/rose-pine-hyprcursor/ 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + passthru = { 28 + updateScript = nix-update-script { }; 29 + }; 30 + 31 + meta = { 32 + description = "Rose Pine theme for Hyprcursor"; 33 + homepage = "https://github.com/ndom91/rose-pine-hyprcursor"; 34 + changelog = "https://github.com/ndom91/rose-pine-hyprcursor/releases/tag/v${finalAttrs.version}/CHANGELOG.md"; 35 + license = lib.licenses.gpl3; 36 + maintainers = with lib.maintainers; [ 37 + johnrtitor 38 + ]; 39 + }; 40 + })