-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19541 from romildo/upd.themes
vertex-theme: 20160329 -> 20161009
- Loading branch information
Showing
2 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,38 @@ | ||
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, pkgconfig }: | ||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }: | ||
|
||
stdenv.mkDerivation rec { | ||
name = "theme-vertex-${version}"; | ||
version = "20160329"; | ||
name = "${pname}-${version}"; | ||
pname = "vertex-theme"; | ||
version = "20161009"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "horst3180"; | ||
repo = "Vertex-theme"; | ||
rev = version; | ||
sha256 = "1zafnbxn9hgi4lmi254iw9jyhifcqijxa7cymwjpyy0jfa6sm1qj"; | ||
repo = pname; | ||
rev = "c861918a7fccf6d0768d45d790a19a13bb23485e"; | ||
sha256 = "13abgl18m04sj44gqipxbagpan4jqral65w59rgnhb6ldxgnhg33"; | ||
}; | ||
|
||
buildInputs = [ autoreconfHook gtk3 pkgconfig ]; | ||
nativeBuildInputs = [ autoreconfHook pkgconfig ]; | ||
|
||
configureFlags = "--disable-unity"; | ||
buildInputs = [ gtk-engine-murrine ]; | ||
|
||
configureFlags = [ "--disable-unity" "--with-gnome=${gnome3.version}" ]; | ||
|
||
postInstall = '' | ||
mkdir -p $out/share/doc/theme-vertex | ||
cp AUTHORS COPYING README.md $out/share/doc/theme-vertex/ | ||
mkdir -p $out/share/plank/themes | ||
cp -r extra/*-Plank $out/share/plank/themes | ||
mkdir -p $out/share/doc/theme-vertex/extra | ||
cp -r extra/{Chrome,Firefox} $out/share/doc/theme-vertex/extra | ||
mkdir -p $out/share/doc/$pname/Chrome | ||
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; { | ||
inherit (src.meta) homepage; | ||
description = "Theme for GTK 3, GTK 2, Gnome-Shell, and Cinnamon"; | ||
license = licenses.gpl3; | ||
maintainers = [ maintainers.rycee ]; | ||
platforms = platforms.unix; | ||
maintainers = with maintainers; [ rycee romildo ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters