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

44 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
2017-09-06 08:51:08 +02:00
let
# treat versions newer than 3.22 as 3.22
gnomeVersion = if stdenv.lib.versionOlder "3.22" gnome3.version then "3.22" else gnome3.version;
2016-10-14 11:58:59 +02:00
pname = "arc-theme";
in
2017-09-06 08:51:08 +02:00
stdenv.mkDerivation rec {
2017-09-06 08:51:08 +02:00
name = "${pname}-${version}";
2017-09-02 04:16:55 +02:00
version = "2017-05-12";
src = fetchFromGitHub {
2017-09-06 08:51:08 +02:00
owner = "horst3180";
repo = pname;
rev = "8290cb813f157a22e64ae58ac3dfb5983b0416e6";
2017-09-02 04:16:55 +02:00
sha256 = "1lxiw5iq9n62xzs0fks572c5vkz202jigndxaankxb44wcgn9zyf";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gnome3.gtk ];
2016-05-14 18:05:03 +02:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
preferLocalBuild = true;
2017-09-06 08:51:08 +02:00
configureFlags = [ "--disable-unity" "--with-gnome=${gnomeVersion}" ];
2016-10-14 11:58:59 +02:00
postInstall = ''
mkdir -p $out/share/plank/themes
cp -r extra/*-Plank $out/share/plank/themes
install -Dm644 -t $out/share/doc/${pname}/Chrome extra/Chrome/*.crx
install -Dm644 -t $out/share/doc/${pname} AUTHORS *.md
2016-10-14 11:58:59 +02:00
'';
meta = with stdenv.lib; {
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
2017-09-06 08:51:08 +02:00
homepage = https://github.com/horst3180/arc-theme;
license = licenses.gpl3;
maintainers = with maintainers; [ simonvandel romildo ];
2017-09-06 08:51:08 +02:00
platforms = platforms.unix;
};
}