aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/data/themes/arc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/data/themes/arc/default.nix')
-rw-r--r--nixpkgs/pkgs/data/themes/arc/default.nix32
1 files changed, 21 insertions, 11 deletions
diff --git a/nixpkgs/pkgs/data/themes/arc/default.nix b/nixpkgs/pkgs/data/themes/arc/default.nix
index c08d4c57786..9fba432656a 100644
--- a/nixpkgs/pkgs/data/themes/arc/default.nix
+++ b/nixpkgs/pkgs/data/themes/arc/default.nix
@@ -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 = "20190917";
+ version = "20200513";
src = fetchFromGitHub {
- owner = "arc-design";
- repo = pname;
- rev = version;
- sha256 = "1qgpk4p2hi5hd4yy0hj93kq1vs0b32wb8qkaj1wi90c8gwddq5wa";
+ owner = "jnsh";
+ repo = pname;
+ rev = version;
+ sha256 = "1xiaf31v3j040hflhf09kpznc93a5fqs92m5jf79y46w3dgpia0p";
};
nativeBuildInputs = [
@@ -34,7 +43,8 @@ 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"
];
@@ -44,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/arc-design/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;
};
}