Merge pull request #8979 from rycee/package/theme-vertex

theme-vertex: init at 20150718
This commit is contained in:
Arseniy Seroka 2015-07-26 23:33:11 +03:00
commit 1bb59f2c57
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, pkgconfig }:
stdenv.mkDerivation rec {
name = "theme-vertex-${version}";
version = "20150718";
src = fetchFromGitHub {
owner = "horst3180";
repo = "Vertex-theme";
rev = version;
sha256 = "19mmybfkx3mrbm9vr78c7xiyazmyzji1n6669466svjr3jy87546";
};
buildInputs = [ autoreconfHook gtk3 pkgconfig ];
configureFlags = "--disable-unity";
postInstall = ''
mkdir -p $out/share/doc/theme-vertex
cp AUTHORS COPYING README.md $out/share/doc/theme-vertex/
mkdir -p $out/share/doc/theme-vertex/extra
cp -r extra/{Chrome,Firefox} $out/share/doc/theme-vertex/extra
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon";
license = licenses.gpl3;
maintainer = [ maintainers.rycee ];
platforms = platforms.unix;
};
}

View file

@ -14137,6 +14137,8 @@ let
kde5 = kf5_stable // plasma5_stable // kdeApps_stable;
theme-vertex = callPackage ../misc/themes/vertex { };
xfce = xfce4-12;
xfce4-12 = recurseIntoAttrs (import ../desktops/xfce { inherit config pkgs newScope; });