Merge pull request #242667 from nim65s/gruppled

gruppled-cursors, gruppled-lite-cursors: init at 1.0.0

authored by Sandro and committed by GitHub 1e0852c1 0f5cb6b7

+77
+30
pkgs/data/icons/gruppled-cursors/default.nix
··· 1 + { 2 + stdenvNoCC, 3 + fetchFromGitHub, 4 + theme, 5 + lib, 6 + }: 7 + 8 + stdenvNoCC.mkDerivation (finalAttrs: { 9 + pname = "gruppled-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-ejlgdogjIYevZvB23si6bEeU6qY7rWXflaUyVk5MzqU="; 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 Cursors theme"; 26 + homepage = "https://github.com/nim65s/gruppled-cursors"; 27 + license = licenses.gpl2Only; 28 + maintainers = with maintainers; [ nim65s ]; 29 + }; 30 + })
+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 + })
+17
pkgs/top-level/all-packages.nix
··· 28786 28786 28787 28787 spacx-gtk-theme = callPackage ../data/themes/gtk-theme-framework { theme = "spacx"; }; 28788 28788 28789 + inherit 28790 + ({ 28791 + gruppled-black-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_black"; }; 28792 + gruppled-black-lite-cursors = callPackage ../data/icons/gruppled-lite-cursors { 28793 + theme = "gruppled_black_lite"; 28794 + }; 28795 + gruppled-white-cursors = callPackage ../data/icons/gruppled-cursors { theme = "gruppled_white"; }; 28796 + gruppled-white-lite-cursors = callPackage ../data/icons/gruppled-lite-cursors { 28797 + theme = "gruppled_white_lite"; 28798 + }; 28799 + }) 28800 + gruppled-black-cursors 28801 + gruppled-black-lite-cursors 28802 + gruppled-white-cursors 28803 + gruppled-white-lite-cursors 28804 + ; 28805 + 28789 28806 gruvbox-dark-icons-gtk = callPackage ../data/icons/gruvbox-dark-icons-gtk { 28790 28807 inherit (plasma5Packages) breeze-icons; 28791 28808 };