arc-theme: Fix build with gnome 3.24

This commit is contained in:
Peter Hoeg 2017-09-06 14:51:08 +08:00
parent f03964ff7c
commit fefdc00c52

View File

@ -1,8 +1,12 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
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;
pname = "arc-theme";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "2017-05-12";
src = fetchFromGitHub {
@ -18,7 +22,7 @@ stdenv.mkDerivation rec {
preferLocalBuild = true;
configureFlags = [ "--disable-unity" ];
configureFlags = [ "--disable-unity" "--with-gnome=${gnomeVersion}" ];
postInstall = ''
mkdir -p $out/share/plank/themes
@ -32,7 +36,7 @@ stdenv.mkDerivation rec {
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.unix;
maintainers = with maintainers; [ simonvandel romildo ];
platforms = platforms.unix;
};
}