2022-12-01T22:57:16 fluent-icon-theme 2022-11-05 -> 2022-11-30 https://github.com/vinceliuice/Fluent-icon-theme/releases 2022-12-01T22:57:19 attrpath: fluent-icon-theme 2022-12-01T22:57:19 Checking auto update branch... 2022-12-01T22:57:19 No auto update branch exists 2022-12-01T22:57:19 Old version 2022-11-05" not present in master derivation file with contents: { lib , stdenvNoCC , fetchFromGitHub , gtk3 , hicolor-icon-theme , jdupes , roundedIcons ? false , blackPanelIcons ? false , colorVariants ? [ ] , }: let pname = "Fluent-icon-theme"; in lib.checkListOfEnum "${pname}: available color variants" [ "standard" "green" "grey" "orange" "pink" "purple" "red" "yellow" "teal" "all" ] colorVariants stdenvNoCC.mkDerivation rec { inherit pname; version = "2022-11-30"; src = fetchFromGitHub { owner = "vinceliuice"; repo = pname; rev = version; hash = "sha256-sxs2GrPuUoitZtiIU7SWFSLGXOTitS41MGt17TeuICE="; }; nativeBuildInputs = [ gtk3 jdupes ]; buildInputs = [ hicolor-icon-theme ]; # Unnecessary & slow fixup's dontPatchELF = true; dontRewriteSymlinks = true; dontDropIconThemeCache = true; postPatch = '' patchShebangs install.sh ''; installPhase = '' runHook preInstall ./install.sh --dest $out/share/icons \ --name Fluent \ ${builtins.toString colorVariants} \ ${lib.optionalString roundedIcons "--round"} \ ${lib.optionalString blackPanelIcons "--black"} jdupes --link-soft --recurse $out/share runHook postInstall ''; meta = with lib; { description = "Fluent icon theme for linux desktops"; homepage = "https://github.com/vinceliuice/Fluent-icon-theme"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = with maintainers; [ icy-thought ]; }; }