nixpkgs/pkgs/data/icons/paper-icon-theme/default.nix

29 lines
809 B
Nix
Raw Normal View History

2016-05-22 13:41:15 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "${package-name}-${version}";
package-name = "paper-icon-theme";
version = "2016-05-25";
2016-05-22 13:41:15 +00:00
src = fetchFromGitHub {
owner = "snwh";
repo = package-name;
rev = "f221537532181a71938faaa1f695c762defe2626";
sha256 = "0knsdhgssh1wyhcrbk6lddqy7zn24528lnajqij467mpgiliabfy";
2016-05-22 13:41:15 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
postPatch = ''
substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
2016-05-22 13:41:15 +00:00
'';
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 ];
};
}