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
This commit is contained in:
Will Dietz 2019-05-11 04:30:46 -05:00 committed by Renaud
parent 58213cd9ca
commit 5dff8e9818
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libxmlb-${version}"; name = "libxmlb-${version}";
version = "0.1.8"; version = "0.1.9";
outputs = [ "out" "lib" "dev" "devdoc" ]; outputs = [ "out" "lib" "dev" "devdoc" ];
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
owner = "hughsie"; owner = "hughsie";
repo = "libxmlb"; repo = "libxmlb";
rev = version; rev = version;
sha256 = "0nry2a4vskfklykd20smp4maqpzibc65rzyv4i71nrc55dyjpy7x"; sha256 = "1rdpsssrwpx24snqb82hisjybnpz9fq91wbmxfi2s63xllzi14b6";
}; };
nativeBuildInputs = [ meson ninja python3 pkgconfig gobject-introspection gtk-doc shared-mime-info docbook_xsl docbook_xml_dtd_43 ]; 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; homepage = https://github.com/hughsie/libxmlb;
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ jtojnar ]; maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix; platforms = platforms.linux;
}; };
} }