Merge pull request #19542 from romildo/upd.arc-theme
arc-theme: 2016-06-06 -> 2016-10-13
This commit is contained in:
commit
c12b5d5e16
|
@ -1,14 +1,15 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2016-06-06";
|
name = "${pname}-${version}";
|
||||||
name = "arc-gtk-theme-${version}";
|
pname = "arc-theme";
|
||||||
|
version = "2016-10-13";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "horst3180";
|
owner = "horst3180";
|
||||||
repo = "arc-theme";
|
repo = pname;
|
||||||
rev = "d24a7b5b4eb25e1a094bdf4e125332cfb8e2c8c1";
|
rev = "a9ce9d56ae61f23592fa4a8c200085dde7b43e07";
|
||||||
sha256 = "07rf21xhyz3if4n5ccmzmjf9rz9w7wkvci7ccivhh6lkillfbxgi";
|
sha256 = "02w8nckd4q548shdgml9ndnbnq1g7nq6v8df89mx4l3lc9r6354y";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
@ -17,13 +18,21 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
preferLocalBuild = true;
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
|
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;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ simonvandel romildo ];
|
maintainers = with maintainers; [ simonvandel romildo ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -535,7 +535,7 @@ in
|
||||||
|
|
||||||
androidsdk_extras = self.androidenv.androidsdk_6_0_extras;
|
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 { };
|
adapta-gtk-theme = callPackage ../misc/themes/adapta { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue