summary refs log tree commit diff
path: root/pkgs/misc/themes/arc/default.nix
blob: b7ff36c0917cc666ab18c061eac0940ea081b2e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:

stdenv.mkDerivation rec {
  version = "2016-06-06";
  name = "arc-gtk-theme-${version}";

  src = fetchFromGitHub {
    owner = "horst3180";
    repo = "arc-theme";
    rev = "d24a7b5b4eb25e1a094bdf4e125332cfb8e2c8c1";
    sha256 = "07rf21xhyz3if4n5ccmzmjf9rz9w7wkvci7ccivhh6lkillfbxgi";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ gtk-engine-murrine ];

  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;
    platforms = platforms.linux;
    maintainers = with maintainers; [ simonvandel romildo ];
  };
}