From cb67a0f150df1ccc88129e353f764af5f2420404 Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Sun, 22 May 2016 10:41:15 -0300 Subject: paper-icon-theme: init at 2016-05-21 --- pkgs/data/icons/paper-icon-theme/default.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/data/icons/paper-icon-theme/default.nix (limited to 'pkgs/data/icons/paper-icon-theme') diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix new file mode 100644 index 0000000000000..731d6158304b1 --- /dev/null +++ b/pkgs/data/icons/paper-icon-theme/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1