From 0c32ddda71f3fbbbeb3fd87b09cdc91bb9b5c201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 13 Oct 2020 09:27:00 -0300 Subject: [PATCH 1/3] arc-theme: 20200819 -> 20201013 --- pkgs/data/themes/arc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/themes/arc/default.nix b/pkgs/data/themes/arc/default.nix index 66be070bdf4..317b5d87cba 100644 --- a/pkgs/data/themes/arc/default.nix +++ b/pkgs/data/themes/arc/default.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "arc-theme"; - version = "20200819"; + version = "20201013"; src = fetchFromGitHub { owner = "jnsh"; repo = pname; rev = version; - sha256 = "1l5sc4r5jp3526r4p32fszny0cw6pkb45cp424hq0s0k344z9px6"; + sha256 = "1x2l1mwjx68dwf3jb1i90c1q8nqsl1wf2zggcn8im6590k5yv39s"; }; nativeBuildInputs = [ From b31577aea8ecb0a3a39cc1b01d39622403dee3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 13 Oct 2020 09:27:35 -0300 Subject: [PATCH 2/3] arc-theme: use pkg-config instead of the alias pkgconfig --- pkgs/data/themes/arc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/themes/arc/default.nix b/pkgs/data/themes/arc/default.nix index 317b5d87cba..79812a217ff 100644 --- a/pkgs/data/themes/arc/default.nix +++ b/pkgs/data/themes/arc/default.nix @@ -2,7 +2,7 @@ , fetchFromGitHub , sassc , autoreconfHook -, pkgconfig +, pkg-config , gtk3 , gnome3 , gtk-engine-murrine @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook - pkgconfig + pkg-config sassc optipng inkscape From 71db2669e83dfb53bd1d77ba8404a1f1a9c249c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 13 Oct 2020 09:33:15 -0300 Subject: [PATCH 3/3] arc-theme: fix license --- pkgs/data/themes/arc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/themes/arc/default.nix b/pkgs/data/themes/arc/default.nix index 79812a217ff..bbbfbe7fe5c 100644 --- a/pkgs/data/themes/arc/default.nix +++ b/pkgs/data/themes/arc/default.nix @@ -56,7 +56,7 @@ 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; + license = licenses.gpl3Only; platforms = platforms.linux; maintainers = with maintainers; [ simonvandel romildo ]; };