nixpkgs-suyu/pkgs/misc/themes/arc/default.nix

30 lines
899 B
Nix
Raw Normal View History

{ stdenv, autoconf, automake, fetchFromGitHub, gnome3, gtk, gtk-engine-murrine, pkgconfig}:
stdenv.mkDerivation rec {
2016-05-14 18:05:03 +02:00
version = "2016-05-14";
name = "arc-gtk-theme-git-${version}";
src = fetchFromGitHub {
owner = "horst3180";
repo = "arc-theme";
2016-05-14 18:05:03 +02:00
rev = "fb3fe2fc0b280e9d8ca4b5fc5ca23e5b00fcac27";
sha256 = "1q844i7bkf75jv9fvf15n47vwvzzbkvhv5ssxl98q8x66dgjwx35";
};
preferLocalBuild = true;
2016-05-14 18:05:03 +02:00
nativeBuildInputs = [ autoconf automake pkgconfig ];
buildInputs = [ gtk-engine-murrine ];
configureScript = "./autogen.sh";
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;
};
}