2020-04-18 01:52:55 +02:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, pantheon, breeze-icons, gnome-icon-theme, hicolor-icon-theme }:
|
2017-07-04 13:17:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-11 20:37:34 +02:00
|
|
|
pname = "papirus-icon-theme";
|
2020-08-02 11:44:30 +02:00
|
|
|
version = "20200801";
|
2017-07-04 13:17:16 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PapirusDevelopmentTeam";
|
2019-06-11 20:37:34 +02:00
|
|
|
repo = pname;
|
2018-02-24 12:49:40 +01:00
|
|
|
rev = version;
|
2020-08-02 11:44:30 +02:00
|
|
|
sha256 = "0w9ks8izxv7mkh82fnclfcdf6mif991dsbbnxsqmcbvljrmjval2";
|
2017-07-04 13:17:16 +02:00
|
|
|
};
|
|
|
|
|
2020-04-18 01:52:55 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gtk3
|
|
|
|
];
|
2017-07-04 13:17:16 +02:00
|
|
|
|
2020-04-18 01:52:55 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pantheon.elementary-icon-theme
|
|
|
|
breeze-icons
|
|
|
|
gnome-icon-theme
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
2019-09-12 16:47:48 +02:00
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
2017-07-04 13:17:16 +02:00
|
|
|
installPhase = ''
|
2020-04-18 01:52:55 +02:00
|
|
|
mkdir -p $out/share/icons
|
|
|
|
mv {,e}Papirus* $out/share/icons
|
2018-02-24 12:49:40 +01:00
|
|
|
|
|
|
|
for theme in $out/share/icons/*; do
|
|
|
|
gtk-update-icon-cache $theme
|
|
|
|
done
|
2017-07-04 13:17:16 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-02-24 12:49:40 +01:00
|
|
|
description = "Papirus icon theme";
|
2020-03-04 10:40:07 +01:00
|
|
|
homepage = "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme";
|
2017-07-04 13:17:16 +02:00
|
|
|
license = licenses.lgpl3;
|
2019-06-11 20:41:18 +02:00
|
|
|
# darwin gives hash mismatch in source, probably because of file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2019-06-11 20:43:13 +02:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2017-07-04 13:17:16 +02:00
|
|
|
};
|
|
|
|
}
|