2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 09:34:36 +00:00

vertex-theme: 20160329 -> 20161009

This commit is contained in:
romildo 2016-10-14 06:34:34 -03:00
parent d4a22b4de3
commit 6ed72b2c1a
2 changed files with 19 additions and 14 deletions
pkgs
misc/themes/vertex
top-level

View File

@ -1,33 +1,38 @@
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, pkgconfig }: { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "theme-vertex-${version}"; name = "${pname}-${version}";
version = "20160329"; pname = "vertex-theme";
version = "20161009";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "horst3180"; owner = "horst3180";
repo = "Vertex-theme"; repo = pname;
rev = version; rev = "c861918a7fccf6d0768d45d790a19a13bb23485e";
sha256 = "1zafnbxn9hgi4lmi254iw9jyhifcqijxa7cymwjpyy0jfa6sm1qj"; sha256 = "13abgl18m04sj44gqipxbagpan4jqral65w59rgnhb6ldxgnhg33";
}; };
buildInputs = [ autoreconfHook gtk3 pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
configureFlags = "--disable-unity"; buildInputs = [ gtk-engine-murrine ];
configureFlags = [ "--disable-unity" "--with-gnome=${gnome3.version}" ];
postInstall = '' postInstall = ''
mkdir -p $out/share/doc/theme-vertex mkdir -p $out/share/plank/themes
cp AUTHORS COPYING README.md $out/share/doc/theme-vertex/ cp -r extra/*-Plank $out/share/plank/themes
mkdir -p $out/share/doc/theme-vertex/extra mkdir -p $out/share/doc/$pname/Chrome
cp -r extra/{Chrome,Firefox} $out/share/doc/theme-vertex/extra cp -r extra/Chrome/*.crx $out/share/doc/$pname/Chrome
cp -r extra/Firefox $out/share/doc/$pname
cp AUTHORS README.md $out/share/doc/$pname/
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit (src.meta) homepage; inherit (src.meta) homepage;
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon"; description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.rycee ];
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ rycee romildo ];
}; };
} }

View File

@ -16174,7 +16174,7 @@ in
in in
recurseIntoAttrs (lib.makeScope qt5.newScope merged); recurseIntoAttrs (lib.makeScope qt5.newScope merged);
theme-vertex = callPackage ../misc/themes/vertex { }; vertex-theme = callPackage ../misc/themes/vertex { };
xfce = xfce4-12; xfce = xfce4-12;
xfce4-12 = recurseIntoAttrs (callPackage ../desktops/xfce { }); xfce4-12 = recurseIntoAttrs (callPackage ../desktops/xfce { });