2017-07-04 12:17:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "papirus-icon-theme-${version}";
|
2017-11-14 14:57:21 +00:00
|
|
|
version = "20171102";
|
2017-07-04 12:17:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PapirusDevelopmentTeam";
|
|
|
|
repo = "papirus-icon-theme";
|
|
|
|
rev = "${version}";
|
2017-11-14 14:57:21 +00:00
|
|
|
sha256 = "10q7ppizzqi8c564jydqivia43gp4j1z984igfyym2mdwdw71mzq";
|
2017-07-04 12:17:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -dm 755 $out/share/icons
|
|
|
|
cp -dr Papirus{,-Dark,-Light} $out/share/icons/
|
|
|
|
cp -dr ePapirus $out/share/icons/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Papirus icon theme for Linux";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
|
2017-07-04 12:17:16 +01:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|