summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-05-11 04:30:46 -0500
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-11 11:30:46 +0200
commit5dff8e981887abdb2e19031015a052480d13dde2 (patch)
tree89b4baae9ed4e5b2a2d71bd5166157f0277a965b /pkgs
parent58213cd9ca649c3b1b9f60793ee120269cdd4f0f (diff)
downloadnixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar.gz
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar.bz2
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar.lz
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar.xz
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.tar.zst
nixpkgs-5dff8e981887abdb2e19031015a052480d13dde2.zip
libxmlb: 0.1.8 -> 0.1.9 (#61201)
* libxmlb: 0.1.8 -> 0.1.9

* libxmlb: restrict to linux platforms
It fails to build on Darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libxmlb/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libxmlb/default.nix b/pkgs/development/libraries/libxmlb/default.nix
index 257ac8e277d..c5ff7c11713 100644
--- a/pkgs/development/libraries/libxmlb/default.nix
+++ b/pkgs/development/libraries/libxmlb/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   name = "libxmlb-${version}";
-  version = "0.1.8";
+  version = "0.1.9";
 
   outputs = [ "out" "lib" "dev" "devdoc" ];
 
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     owner = "hughsie";
     repo = "libxmlb";
     rev = version;
-    sha256 = "0nry2a4vskfklykd20smp4maqpzibc65rzyv4i71nrc55dyjpy7x";
+    sha256 = "1rdpsssrwpx24snqb82hisjybnpz9fq91wbmxfi2s63xllzi14b6";
   };
 
   nativeBuildInputs = [ meson ninja python3 pkgconfig gobject-introspection gtk-doc shared-mime-info docbook_xsl docbook_xml_dtd_43 ];
@@ -33,6 +33,6 @@ stdenv.mkDerivation rec {
     homepage = https://github.com/hughsie/libxmlb;
     license = licenses.lgpl21Plus;
     maintainers = with maintainers; [ jtojnar ];
-    platforms = platforms.unix;
+    platforms = platforms.linux;
   };
 }