2017-12-19 05:53:07 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, glib, libxml2
|
|
|
|
, libxslt, libarchive, bzip2, lzma
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-23 21:48:46 +01:00
|
|
|
name = "osinfo-db-tools-1.2.0";
|
2017-12-19 05:53:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://releases.pagure.org/libosinfo/${name}.tar.gz";
|
2018-06-23 21:48:46 +01:00
|
|
|
sha256 = "07zqbwsmdgnzqah2smm4zri04c0qm82z1jn8kzz1bnsqbfg84l1v";
|
2017-12-19 05:53:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
buildInputs = [ glib libxml2 libxslt libarchive bzip2 lzma ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools for managing the osinfo database";
|
|
|
|
homepage = https://libosinfo.org/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|