arc-theme: 2016-06-06 -> 2016-10-13

This commit is contained in:
romildo 2016-10-14 06:58:59 -03:00
parent d4a22b4de3
commit 6eef45e58e
2 changed files with 18 additions and 9 deletions

View File

@ -1,14 +1,15 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
stdenv.mkDerivation rec {
version = "2016-06-06";
name = "arc-gtk-theme-${version}";
name = "${pname}-${version}";
pname = "arc-theme";
version = "2016-10-13";
src = fetchFromGitHub {
owner = "horst3180";
repo = "arc-theme";
rev = "d24a7b5b4eb25e1a094bdf4e125332cfb8e2c8c1";
sha256 = "07rf21xhyz3if4n5ccmzmjf9rz9w7wkvci7ccivhh6lkillfbxgi";
repo = pname;
rev = "a9ce9d56ae61f23592fa4a8c200085dde7b43e07";
sha256 = "02w8nckd4q548shdgml9ndnbnq1g7nq6v8df89mx4l3lc9r6354y";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
@ -17,13 +18,21 @@ stdenv.mkDerivation rec {
preferLocalBuild = true;
configureFlags = "--with-gnome=${gnome3.version} ";
configureFlags = [ "--disable-unity" "--with-gnome=${gnome3.version}" ];
postInstall = ''
mkdir -p $out/share/plank/themes
cp -r extra/*-Plank $out/share/plank/themes
mkdir -p $out/share/doc/$pname/Chrome
cp -r extra/Chrome/*.crx $out/share/doc/$pname/Chrome
cp AUTHORS README.md $out/share/doc/$pname/
'';
meta = with stdenv.lib; {
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
homepage = "https://github.com/horst3180/Arc-theme";
homepage = "https://github.com/horst3180/arc-theme";
license = licenses.gpl3;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ simonvandel romildo ];
};
}

View File

@ -535,7 +535,7 @@ in
androidsdk_extras = self.androidenv.androidsdk_6_0_extras;
arc-gtk-theme = callPackage ../misc/themes/arc { };
arc-theme = callPackage ../misc/themes/arc { };
adapta-gtk-theme = callPackage ../misc/themes/adapta { };