diff --git a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix new file mode 100644 index 00000000000..c7cf3a871b5 --- /dev/null +++ b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.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 = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth"; + homepage = "http://snwh.org/paper/"; + license = licenses.gpl3; + maintainers = [ maintainers.simonvandel ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d4c2c2da0f4..c847c724bc1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2586,6 +2586,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 };