orion: add GTK3 theme

This commit is contained in:
Thomas Tuegel 2015-01-19 11:14:14 -06:00
parent f34c22047d
commit 8994b50dda
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchgit, gtk-engine-murrine }:
stdenv.mkDerivation {
name = "orion-1.5";
src = fetchgit {
url = "https://github.com/shimmerproject/Orion.git";
rev = "refs/tags/v1.5";
sha256 = "995671990514a68192dc82ed51eaa6ab17c396950e1d8b7768c262027be6b05f";
};
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
phases = "$prePhases unpackPhase installPhase fixupPhase $postPhases";
installPhase = ''
mkdir -p $out/share/themes/orion
cp -r gtk-2.0 gtk-3.0 metacity-1 openbox-3 xfwm4 $out/share/themes/orion
'';
meta = {
homepage = https://github.com/shimmerproject/Orion;
license = stdenv.lib.licenses.gpl3Plus;
};
}

View File

@ -12414,6 +12414,8 @@ let
geoclue = geoclue2;
};
orion = callPackage ../misc/themes/orion {};
oxygen-gtk2 = callPackage ../misc/themes/gtk2/oxygen-gtk { };
oxygen-gtk3 = callPackage ../misc/themes/gtk3/oxygen-gtk3 { };