summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-06-03 08:22:40 -0300
committerRobert Helgesson <robert@rycee.net>2016-06-03 20:03:40 +0200
commit3f80f0149f65bcd17b925c0a3fca9e73707cbf8d (patch)
tree095a624b3ea1a0a62d5195d200822cd290cfe4f1
parentab9acc27f9bd3a2def9d66be5c90290e3facaab9 (diff)
arc-gtk-theme: 2016-05-14 -> 2016-06-02
-rw-r--r--pkgs/misc/themes/arc/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/misc/themes/arc/default.nix b/pkgs/misc/themes/arc/default.nix
index eda2daf15c97..b14746cfec50 100644
--- a/pkgs/misc/themes/arc/default.nix
+++ b/pkgs/misc/themes/arc/default.nix
@@ -1,29 +1,29 @@
-{ stdenv, autoconf, automake, fetchFromGitHub, gnome3, gtk, gtk-engine-murrine, pkgconfig}:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk, gtk-engine-murrine }:
stdenv.mkDerivation rec {
- version = "2016-05-14";
- name = "arc-gtk-theme-git-${version}";
+ version = "2016-06-02";
+ name = "arc-gtk-theme-${version}";
+
src = fetchFromGitHub {
owner = "horst3180";
repo = "arc-theme";
- rev = "fb3fe2fc0b280e9d8ca4b5fc5ca23e5b00fcac27";
- sha256 = "1q844i7bkf75jv9fvf15n47vwvzzbkvhv5ssxl98q8x66dgjwx35";
+ rev = "226098a06b646981022f0e260fd4d3ca64ff5616";
+ sha256 = "1lg2iig1rws2h0p7qy1pavphyzdcchmfdlv126696jczz21d67qm";
};
- preferLocalBuild = true;
-
- nativeBuildInputs = [ autoconf automake pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtk-engine-murrine ];
- configureScript = "./autogen.sh";
+ preferLocalBuild = true;
+
configureFlags = "--with-gnome=${gnome3.version}";
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";
license = licenses.gpl3;
- maintainers = [ maintainers.simonvandel ];
platforms = platforms.linux;
+ maintainers = with maintainers; [ simonvandel romildo ];
};
}