6 , nordzy-themes ? [ "all" ] # Override this to only install selected themes
9 stdenvNoCC.mkDerivation rec {
10 pname = "nordzy-icon-theme";
13 src = fetchFromGitHub {
17 sha256 = "sha256-r/WYGcHRAFX7TennestobjcJhwu3GE8aQXxnaeokQM0=";
20 # In the post patch phase we should first make sure to patch shebangs.
22 patchShebangs install.sh
30 dontDropIconThemeCache = true;
35 name= ./install.sh --dest $out/share/icons \
36 ${lib.optionalString (nordzy-themes != []) (lib.strings.concatMapStrings (theme: "-t ${theme} ") nordzy-themes)}
38 # Replace duplicate files with hardlinks to the first file in each
39 # set of duplicates, reducing the installed size in about 87%
40 jdupes -L -r $out/share
48 description = "Icon theme using the Nord color palette, based on WhiteSur and Numix icon themes";
49 homepage = "https://github.com/alvatip/Nordzy-icon";
50 license = licenses.gpl3Only;
51 platforms = platforms.linux;
52 maintainers = with maintainers; [ alexnortung ];