forked from mirrors/nixpkgs
paper-icon-theme: init at 2016-05-21
This commit is contained in:
parent
7e390822d2
commit
cb67a0f150
28
pkgs/data/icons/paper-icon-theme/default.nix
Normal file
28
pkgs/data/icons/paper-icon-theme/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${package-name}-${version}";
|
||||
package-name = "paper-icon-theme";
|
||||
version = "2016-05-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "snwh";
|
||||
repo = package-name;
|
||||
rev = "f2a34cab78df0fa7db5a10e93e633953cb7c1eb7";
|
||||
sha256 = "0pk848jbskkwz7im73119hcrcyr5nim37jcdrhqf4cwrshmbcacq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
installPhase = ''
|
||||
make install DESTDIR="$out"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Modern icon theme designed around bold colours and simple geometric shapes";
|
||||
homepage = http://snwh.org/paper;
|
||||
license = with licenses; [ cc-by-sa-40 lgpl3 ];
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
|
@ -11588,6 +11588,8 @@ in
|
|||
|
||||
opensans-ttf = callPackage ../data/fonts/opensans-ttf { };
|
||||
|
||||
paper-icon-theme = callPackage ../data/icons/paper-icon-theme { };
|
||||
|
||||
pecita = callPackage ../data/fonts/pecita {};
|
||||
|
||||
paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};
|
||||
|
|
Loading…
Reference in a new issue