My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/data/icons/nordzy-icon-theme/default.nix

54 lines
1.3 KiB

{ stdenvNoCC
, fetchFromGitHub
, lib
, gtk3
, jdupes
, nordzy-themes ? [ "all" ] # Override this to only install selected themes
}:
stdenvNoCC.mkDerivation rec {
pname = "nordzy-icon-theme";
version = "1.5";
src = fetchFromGitHub {
owner = "alvatip";
repo = "Nordzy-icon";
rev = version;
sha256 = "sha256-2uMbiee7wCyDxs6kYd5sL/keDVIVjIWxoci5/t2HF8s=";
};
# In the post patch phase we should first make sure to patch shebangs.
postPatch = ''
patchShebangs install.sh
'';
nativeBuildInputs = [
gtk3
jdupes
];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
name= ./install.sh --dest $out/share/icons \
${lib.optionalString (nordzy-themes != []) (lib.strings.concatMapStrings (theme: "-t ${theme} ") nordzy-themes)}
# Replace duplicate files with hardlinks to the first file in each
# set of duplicates, reducing the installed size in about 87%
jdupes -L -r $out/share
runHook postInstall
'';
dontFixup = true;
meta = with lib; {
description = "Icon theme using the Nord color palette, based on WhiteSur and Numix icon themes";
homepage = "https://github.com/alvatip/Nordzy-icon";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ alexnortung ];
};
}