Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

cinnamon.mint-l-icons: init at 1.6.4

https://github.com/linuxmint/mint-l-icons/commits/1.6.4

+54
+1
pkgs/desktops/cinnamon/default.nix
··· 38 38 nemo-with-extensions = callPackage ./nemo/wrapper.nix { }; 39 39 mint-artwork = callPackage ./mint-artwork { }; 40 40 mint-cursor-themes = callPackage ./mint-cursor-themes { }; 41 + mint-l-icons = callPackage ./mint-l-icons { }; 41 42 mint-themes = callPackage ./mint-themes { }; 42 43 mint-x-icons = callPackage ./mint-x-icons { }; 43 44 mint-y-icons = callPackage ./mint-y-icons { };
+53
pkgs/desktops/cinnamon/mint-l-icons/default.nix
··· 1 + { stdenvNoCC 2 + , lib 3 + , fetchFromGitHub 4 + , gnome 5 + , gnome-icon-theme 6 + , hicolor-icon-theme 7 + , gtk3 8 + }: 9 + 10 + stdenvNoCC.mkDerivation rec { 11 + pname = "mint-l-icons"; 12 + version = "1.6.4"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "linuxmint"; 16 + repo = pname; 17 + rev = version; 18 + hash = "sha256-C6BnBIOKeewsaQPPXWWo70eQpO1pJS0+xVQghPj/TTE="; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + gnome.adwaita-icon-theme 23 + gnome-icon-theme 24 + hicolor-icon-theme 25 + ]; 26 + 27 + nativeBuildInputs = [ 28 + gtk3 29 + ]; 30 + 31 + dontDropIconThemeCache = true; 32 + 33 + installPhase = '' 34 + runHook preInstall 35 + 36 + mkdir -p $out 37 + mv usr/share $out 38 + 39 + for theme in $out/share/icons/*; do 40 + gtk-update-icon-cache $theme 41 + done 42 + 43 + runHook postInstall 44 + ''; 45 + 46 + meta = with lib; { 47 + homepage = "https://github.com/linuxmint/mint-l-icons"; 48 + description = "Mint-L icon theme"; 49 + license = licenses.gpl3Plus; # from debian/copyright 50 + platforms = platforms.linux; 51 + maintainers = teams.cinnamon.members; 52 + }; 53 + }