forked from mirrors/nixpkgs
arc-theme: Fix build with gnome 3.24
This commit is contained in:
parent
f03964ff7c
commit
fefdc00c52
|
@ -1,14 +1,18 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk-engine-murrine }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "${pname}-${version}";
|
# 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";
|
pname = "arc-theme";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
version = "2017-05-12";
|
version = "2017-05-12";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "horst3180";
|
owner = "horst3180";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "8290cb813f157a22e64ae58ac3dfb5983b0416e6";
|
rev = "8290cb813f157a22e64ae58ac3dfb5983b0416e6";
|
||||||
sha256 = "1lxiw5iq9n62xzs0fks572c5vkz202jigndxaankxb44wcgn9zyf";
|
sha256 = "1lxiw5iq9n62xzs0fks572c5vkz202jigndxaankxb44wcgn9zyf";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -18,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
|
||||||
configureFlags = [ "--disable-unity" ];
|
configureFlags = [ "--disable-unity" "--with-gnome=${gnomeVersion}" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p $out/share/plank/themes
|
mkdir -p $out/share/plank/themes
|
||||||
|
@ -30,9 +34,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
|
description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell";
|
||||||
homepage = https://github.com/horst3180/arc-theme;
|
homepage = https://github.com/horst3180/arc-theme;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ simonvandel romildo ];
|
maintainers = with maintainers; [ simonvandel romildo ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue