Merge pull request #83534 from mmilata/libosinfo-bump

osinfo-db-tools: 1.6.0 -> 1.7.0, osinfo-db: 20200214 -> 20200515, libosinfo: fix test
This commit is contained in:
Jan Tojnar
2020-05-25 12:38:04 +02:00
committed by GitHub
3 changed files with 12 additions and 11 deletions

View File

@@ -1,17 +1,17 @@
{ stdenv, fetchurl, pkgconfig, gettext, glib, libxml2, perl
{ stdenv, fetchurl, pkgconfig, meson, ninja, gettext, glib, libxml2, perl, python3
, libxslt, libarchive, bzip2, lzma, json-glib, libsoup
}:
stdenv.mkDerivation rec {
pname = "osinfo-db-tools";
version = "1.6.0";
version = "1.7.0";
src = fetchurl {
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.gz";
sha256 = "0x155d4hqz7mabgqvgydqjm9d8aabc78vr0v0pnsp9vkdlcv3mfh";
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
sha256 = "08x8mrafphyll0d35xdc143rip3ahrz6bmzhc85nwhq7yk2vxpab";
};
nativeBuildInputs = [ pkgconfig gettext perl ];
nativeBuildInputs = [ meson ninja pkgconfig gettext perl python3 ];
buildInputs = [ glib json-glib libxml2 libxslt libarchive bzip2 lzma libsoup ];
meta = with stdenv.lib; {