nixpkgs/pkgs/data/icons/nordzy-cursor-theme/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
728 B
Nix
Raw Normal View History

2022-06-28 10:45:46 +00:00
{ stdenvNoCC
2021-12-11 22:38:40 +00:00
, fetchFromGitHub
, lib
}:
2022-06-28 10:45:46 +00:00
stdenvNoCC.mkDerivation rec {
2021-12-11 22:38:40 +00:00
pname = "nordzy-cursor-theme";
2022-06-28 10:45:46 +00:00
version = "0.6.0";
2021-12-11 22:38:40 +00:00
src = fetchFromGitHub {
owner = "alvatip";
repo = "Nordzy-cursors";
rev = "v${version}";
2022-06-28 10:45:46 +00:00
sha256 = "sha256-q9PEEyxejRQ8UCwbqsfOCL7M70pLCOLyCx8gEFmZkWA=";
2021-12-11 22:38:40 +00:00
};
installPhase = ''
mkdir -p $out/share/icons
2022-06-28 10:45:46 +00:00
cp -r Nordzy-cursors{,-white,-lefthand} $out/share/icons
2021-12-11 22:38:40 +00:00
'';
meta = with lib; {
description = "Cursor theme using the Nord color palette and based on Vimix and cz-Viator";
homepage = "https://github.com/alvatip/Nordzy-cursors";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [
alexnortung
];
};
}