File tree 2 files changed +30
-0
lines changed
data/icons/papirus-icon-theme
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -12967,6 +12967,8 @@ with pkgs;
12967
12967
12968
12968
paper-icon-theme = callPackage ../data/icons/paper-icon-theme { };
12969
12969
12970
+ papirus-icon-theme = callPackage ../data/icons/papirus-icon-theme { };
12971
+
12970
12972
pecita = callPackage ../data/fonts/pecita {};
12971
12973
12972
12974
paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};
You can’t perform that action at this time.
0 commit comments