nixpkgs/pkgs/data/icons/fluent-icon-theme/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.5 KiB
Nix
Raw Normal View History

2022-08-28 12:15:49 +02:00
{ lib
, stdenvNoCC
, fetchFromGitHub
, gtk3
, hicolor-icon-theme
, jdupes
, roundedIcons ? false
, blackPanelIcons ? false
, allColorVariants ? false
, colorVariants ? [ ]
2022-08-28 12:15:49 +02:00
,
}:
let pname = "Fluent-icon-theme";
2022-08-28 12:15:49 +02:00
in
lib.checkListOfEnum "${pname}: available color variants" [ "standard" "green" "grey" "orange" "pink" "purple" "red" "yellow" "teal" ] colorVariants
2022-08-28 12:15:49 +02:00
stdenvNoCC.mkDerivation rec {
inherit pname;
version = "2022-11-30";
2022-08-28 12:15:49 +02:00
src = fetchFromGitHub {
owner = "vinceliuice";
repo = pname;
rev = version;
hash = "sha256-sxs2GrPuUoitZtiIU7SWFSLGXOTitS41MGt17TeuICE=";
2022-08-28 12:15:49 +02:00
};
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 allColorVariants "--all"} \
2022-08-28 12:15:49 +02:00
${lib.optionalString roundedIcons "--round"} \
${lib.optionalString blackPanelIcons "--black"}
jdupes --quiet --link-soft --recurse $out/share
2022-08-28 12:15:49 +02:00
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 ];
};
}