summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-01-05 11:03:17 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-01-05 11:03:17 -0300
commit7d01524ba86d407ae2f148820ceb20a2d36b237b (patch)
tree5235def4111b13776b89117f90e91f07e561e2ea /pkgs/data
parent87021d3ca13825ff610408fa42cd21bd34042629 (diff)
downloadnixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar.gz
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar.bz2
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar.lz
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar.xz
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.tar.zst
nixpkgs-7d01524ba86d407ae2f148820ceb20a2d36b237b.zip
greybird: 3.22.10 -> 3.22.11
- update to version 3.22.11
- build system ported to meson
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/greybird/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/data/themes/greybird/default.nix b/pkgs/data/themes/greybird/default.nix
index 1c5a631a48c..cc665749d3c 100644
--- a/pkgs/data/themes/greybird/default.nix
+++ b/pkgs/data/themes/greybird/default.nix
@@ -1,22 +1,21 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk-pixbuf, librsvg, gtk-engine-murrine }:
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, sassc, gdk-pixbuf, librsvg, gtk-engine-murrine }:
 
 stdenv.mkDerivation rec {
   pname = "greybird";
-  version = "3.22.10";
+  version = "3.22.11";
 
   src = fetchFromGitHub {
     owner = "shimmerproject";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1g1mnzxqwlbymq8npd2j294f8dzf9fw9nicd4pajmscg2vk71da9";
+    sha256 = "00x7dcjldph9k0nmvc8hyh3k4lhbmwk791rywd89ry6jivrx40pc";
   };
 
   nativeBuildInputs = [
-    autoreconfHook
-    which
+    meson
+    ninja
+    pkgconfig
     sassc
-    glib
-    libxml2
   ];
 
   buildInputs = [
@@ -30,8 +29,8 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Grey and blue theme from the Shimmer Project for GTK-based environments";
-    homepage = https://github.com/shimmerproject/Greybird;
-    license = with licenses; [ gpl2Plus ]; # or alternatively: cc-by-nc-sa-30
+    homepage = "https://github.com/shimmerproject/Greybird";
+    license = [ licenses.gpl2Plus ]; # or alternatively: cc-by-nc-sa-30 or later
     platforms = platforms.linux;
     maintainers = [ maintainers.romildo ];
   };