mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub, gtk3, pantheon, breeze-icons, gnome-icon-theme, hicolor-icon-theme, papirus-folders, color ? null }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "papirus-icon-theme";
|
|
version = "20221201";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-Y+flyo8MJVmAoiJ0mSZNu/xhhLzsYr6t8R0c+TOxbq0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gtk3 papirus-folders ];
|
|
|
|
propagatedBuildInputs = [
|
|
pantheon.elementary-icon-theme
|
|
breeze-icons
|
|
gnome-icon-theme
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/icons
|
|
mv {,e}Papirus* $out/share/icons
|
|
|
|
for theme in $out/share/icons/*; do
|
|
${lib.optionalString (color != null) "${papirus-folders}/bin/papirus-folders -t $theme -o -C ${color}"}
|
|
gtk-update-icon-cache --force $theme
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Papirus icon theme";
|
|
homepage = "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme";
|
|
license = licenses.gpl3Only;
|
|
# darwin gives hash mismatch in source, probably because of file names differing only in case
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo fortuneteller2k ];
|
|
};
|
|
}
|