Merge pull request #10573 from simonvandel/paper-gtk-theme-init
paper-gtk-theme: init at 6a5f14c
This commit is contained in:
commit
1bdf372a28
29
pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
Normal file
29
pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -2586,6 +2586,8 @@ let
|
|||||||
|
|
||||||
panomatic = callPackage ../tools/graphics/panomatic { };
|
panomatic = callPackage ../tools/graphics/panomatic { };
|
||||||
|
|
||||||
|
paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { };
|
||||||
|
|
||||||
par2cmdline = callPackage ../tools/networking/par2cmdline {
|
par2cmdline = callPackage ../tools/networking/par2cmdline {
|
||||||
automake = automake112x; # fails with 14
|
automake = automake112x; # fails with 14
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user