nixpkgs/pkgs/tools/misc/osinfo-db-tools/default.nix

25 lines
746 B
Nix
Raw Normal View History

2019-08-21 01:22:15 +00:00
{ stdenv, fetchurl, pkgconfig, gettext, glib, libxml2, perl
, libxslt, libarchive, bzip2, lzma, json-glib, libsoup
2017-12-19 05:53:07 +00:00
}:
stdenv.mkDerivation rec {
pname = "osinfo-db-tools";
2019-08-21 01:22:15 +00:00
version = "1.6.0";
2017-12-19 05:53:07 +00:00
src = fetchurl {
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.gz";
2019-08-21 01:22:15 +00:00
sha256 = "0x155d4hqz7mabgqvgydqjm9d8aabc78vr0v0pnsp9vkdlcv3mfh";
2017-12-19 05:53:07 +00:00
};
2019-08-21 01:22:15 +00:00
nativeBuildInputs = [ pkgconfig gettext perl ];
buildInputs = [ glib json-glib libxml2 libxslt libarchive bzip2 lzma libsoup ];
2017-12-19 05:53:07 +00:00
meta = with stdenv.lib; {
description = "Tools for managing the osinfo database";
homepage = https://libosinfo.org/;
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}