Skip to content

Commit 8acde59

Browse files
bugwormMic92
authored andcommittedJul 4, 2017
papirus-icon-theme: init at 20170616
fixes #27115
1 parent 0ec4394 commit 8acde59

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{ stdenv, fetchFromGitHub }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "papirus-icon-theme-${version}";
5+
version = "20170616";
6+
7+
src = fetchFromGitHub {
8+
owner = "PapirusDevelopmentTeam";
9+
repo = "papirus-icon-theme";
10+
rev = "${version}";
11+
sha256 = "008nkmxp3f9qqljif3v9ns3a8mflzffv2mm5zgjng9pmdl5x70j4";
12+
};
13+
14+
dontBuild = true;
15+
16+
installPhase = ''
17+
install -dm 755 $out/share/icons
18+
cp -dr Papirus{,-Dark,-Light} $out/share/icons/
19+
cp -dr ePapirus $out/share/icons/
20+
'';
21+
22+
meta = with stdenv.lib; {
23+
description = "Papirus icon theme for Linux";
24+
homepage = "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme";
25+
license = licenses.lgpl3;
26+
platforms = platforms.all;
27+
};
28+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -12967,6 +12967,8 @@ with pkgs;
1296712967

1296812968
paper-icon-theme = callPackage ../data/icons/paper-icon-theme { };
1296912969

12970+
papirus-icon-theme = callPackage ../data/icons/papirus-icon-theme { };
12971+
1297012972
pecita = callPackage ../data/fonts/pecita {};
1297112973

1297212974
paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};

0 commit comments

Comments
 (0)