Merge pull request #87764 from romildo/upd.arc-theme

arc-theme: 20200416 -> 20200513
This commit is contained in:
José Romildo Malaquias 2020-05-14 19:43:06 -03:00 committed by GitHub
commit 54b7ad9e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,24 @@
{ stdenv, fetchFromGitHub, sassc, autoreconfHook, pkgconfig, gtk3, gnome3
, gtk-engine-murrine, optipng, inkscape }:
{ stdenv
, fetchFromGitHub
, sassc
, autoreconfHook
, pkgconfig
, gtk3
, gnome3
, gtk-engine-murrine
, optipng
, inkscape
}:
stdenv.mkDerivation rec {
pname = "arc-theme";
version = "20200416";
version = "20200513";
src = fetchFromGitHub {
owner = "jnsh";
repo = pname;
rev = "0779e1ca84141d8b443cf3e60b85307a145169b6";
sha256 = "1ddyi8g4rkd4mxadjvl66wc0lxpa4qdr98nbbhm5abaqfs2yldd4";
owner = "jnsh";
repo = pname;
rev = version;
sha256 = "1xiaf31v3j040hflhf09kpznc93a5fqs92m5jf79y46w3dgpia0p";
};
nativeBuildInputs = [
@ -34,7 +43,7 @@ stdenv.mkDerivation rec {
'';
configureFlags = [
"--disable-gnome-shell" # 3.36 not supported
"--with-gnome-shell=${gnome3.gnome-shell.version}"
"--disable-cinnamon" # not equipped to test
"--disable-unity"
];
@ -45,9 +54,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Flat theme with transparent elements for GTK 3, GTK 2 and Gnome Shell";
homepage = "https://github.com/jnsh/arc-theme";
license = licenses.gpl3;
homepage = "https://github.com/jnsh/arc-theme";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ simonvandel romildo ];
platforms = platforms.linux;
};
}