nixpkgs/pkgs/data/icons/papirus-icon-theme/default.nix
Ryan Mulligan 52ee1d87e9 papirus-icon-theme: 20171102 -> 20180214
Semi-automatic update. These checks were performed:

- built on NixOS
2018-02-27 09:28:09 -08:00

34 lines
770 B
Nix

{ stdenv, fetchFromGitHub, gtk3 }:
stdenv.mkDerivation rec {
name = "papirus-icon-theme-${version}";
version = "20180214";
src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
repo = "papirus-icon-theme";
rev = version;
sha256 = "0lsp5cmq5wdqw6vyh6hqqrshgpzxfj8dx87l7qdlgrk73dajjmki";
};
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;
};
}