paper-gtk-theme: init at 6a5f14c

wip/yesman
Simon Vandel Sillesen 9 years ago
parent e57024f821
commit 138ecfa03b
  1. 29
      pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, gtk }:
stdenv.mkDerivation rec {
version = "6a5f14cfe697b0a829456a1fd560acdcddc6043f";
name = "paper-gtk-theme-${version}";
src = fetchFromGitHub {
owner = "snwh";
repo = "paper-gtk-theme";
sha256 = "0kyn3a6sq0z22vds6szl630jv20pjskjbdg0wc8abxzwg0vwxc5m";
rev = version;
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/themes/Paper/
cp -r ./Paper/ $out/share/themes/
'';
preferLocalBuild = true;
meta = with stdenv.lib; {
description = "Paper is a modern desktop theme suite. Its design is mostly flat with a minimal use of shadows for depth.";
homepage = "http://snwh.org/paper/";
license = licenses.gpl3;
maintainers = [ maintainers.simonvandel ];
platforms = platforms.linux;
};
}

@ -2559,6 +2559,8 @@ let
panomatic = callPackage ../tools/graphics/panomatic { };
paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { };
par2cmdline = callPackage ../tools/networking/par2cmdline {
automake = automake112x; # fails with 14
};

Loading…
Cancel
Save