mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
5b4ff82631
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/papirus-icon-theme/versions
34 lines
770 B
Nix
34 lines
770 B
Nix
{ stdenv, fetchFromGitHub, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "papirus-icon-theme-${version}";
|
|
version = "20190302";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PapirusDevelopmentTeam";
|
|
repo = "papirus-icon-theme";
|
|
rev = version;
|
|
sha256 = "10dhjwcb9jr7nr29jxl5nj09fzlj4w25hzssw1hgm4hbp72v4z05";
|
|
};
|
|
|
|
nativeBuildInputs = [ gtk3 ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/icons
|
|
mv {,e}Papirus* $out/share/icons
|
|
'';
|
|
|
|
postFixup = ''
|
|
for theme in $out/share/icons/*; do
|
|
gtk-update-icon-cache $theme
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Papirus icon theme";
|
|
homepage = https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|