gruppled-lite-cursors: init at 1.0.0

+34
+30
pkgs/data/icons/gruppled-lite-cursors/default.nix
···
··· 1 + { 2 + stdenvNoCC, 3 + fetchFromGitHub, 4 + theme, 5 + lib, 6 + }: 7 + 8 + stdenvNoCC.mkDerivation (finalAttrs: { 9 + pname = "gruppled-lite-cursors"; 10 + version = "1.0.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "nim65s"; 14 + repo = finalAttrs.pname; 15 + rev = "v${finalAttrs.version}"; 16 + hash = "sha256-adCXYu8v6mFKXubVQb/RCZXS87//YgixQp20kMt7KT8="; 17 + }; 18 + 19 + installPhase = '' 20 + mkdir -p $out/share/icons/${theme} 21 + cp -r ${theme}/{cursors,index.theme} $out/share/icons/${theme} 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "Gruppled Lite Cursors theme"; 26 + homepage = "https://github.com/nim65s/gruppled-lite-cursors"; 27 + license = licenses.gpl2Only; 28 + maintainers = with maintainers; [ nim65s ]; 29 + }; 30 + })
+4
pkgs/top-level/all-packages.nix
··· 28994 28995 gruppled-black-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_black"; }; 28996 28997 gruppled-white-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_white"; }; 28998 28999 gruvbox-dark-icons-gtk = callPackage ../data/icons/gruvbox-dark-icons-gtk { 29000 inherit (plasma5Packages) breeze-icons;
··· 28994 28995 gruppled-black-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_black"; }; 28996 28997 + gruppled-black-lite-cursors = callPackage ../data/icons/gruppled-lite-cursors { theme = "gruppled_black_lite"; }; 28998 + 28999 gruppled-white-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_white"; }; 29000 + 29001 + gruppled-white-lite-cursors = callPackage ../data/icons/gruppled-lite-cursors { theme = "gruppled_white_lite"; }; 29002 29003 gruvbox-dark-icons-gtk = callPackage ../data/icons/gruvbox-dark-icons-gtk { 29004 inherit (plasma5Packages) breeze-icons;