Merge pull request #10573 from simonvandel/paper-gtk-theme-init

paper-gtk-theme: init at 6a5f14c

goibhniu 1bdf372a 644dd145

+31
+29
pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, gtk }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "6a5f14cfe697b0a829456a1fd560acdcddc6043f"; 5 + name = "paper-gtk-theme-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "snwh"; 9 + repo = "paper-gtk-theme"; 10 + sha256 = "0kyn3a6sq0z22vds6szl630jv20pjskjbdg0wc8abxzwg0vwxc5m"; 11 + rev = version; 12 + }; 13 + 14 + dontBuild = true; 15 + installPhase = '' 16 + mkdir -p $out/share/themes/Paper/ 17 + cp -r ./Paper/ $out/share/themes/ 18 + ''; 19 + 20 + preferLocalBuild = true; 21 + 22 + meta = with stdenv.lib; { 23 + description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth"; 24 + homepage = "http://snwh.org/paper/"; 25 + license = licenses.gpl3; 26 + maintainers = [ maintainers.simonvandel ]; 27 + platforms = platforms.linux; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 2586 2587 panomatic = callPackage ../tools/graphics/panomatic { }; 2588 2589 par2cmdline = callPackage ../tools/networking/par2cmdline { 2590 automake = automake112x; # fails with 14 2591 };
··· 2586 2587 panomatic = callPackage ../tools/graphics/panomatic { }; 2588 2589 + paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { }; 2590 + 2591 par2cmdline = callPackage ../tools/networking/par2cmdline { 2592 automake = automake112x; # fails with 14 2593 };