nixpkgs/pkgs/misc/themes/paper-gtk-theme/default.nix

32 lines
838 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, gtk_engines }:
2015-10-24 11:02:39 +00:00
stdenv.mkDerivation rec {
version = "2016-05-18";
2015-10-24 11:02:39 +00:00
name = "paper-gtk-theme-${version}";
src = fetchFromGitHub {
owner = "snwh";
repo = "paper-gtk-theme";
rev = "5113d58dc64de70fcc75ad2d6d05c8c8dae2de7f";
sha256 = "1j9l50iyvadpqsq5v14zgml24jgraajr5kl9ji0ar62nlak2bi8s";
2015-10-24 11:02:39 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gtk_engines ];
2015-10-24 11:02:39 +00:00
installPhase = ''
make install DESTDIR="$out"
2015-10-24 11:02:39 +00:00
'';
preferLocalBuild = true;
meta = with stdenv.lib; {
description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
homepage = "http://snwh.org/paper";
2015-10-24 11:02:39 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.simonvandel maintainers.romildo ];
2015-10-24 11:02:39 +00:00
platforms = platforms.linux;
};
}