2022-02-23 19:16:39 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, libxml2
|
|
|
|
, perl
|
|
|
|
, python3
|
|
|
|
, libxslt
|
|
|
|
, libarchive
|
|
|
|
, bzip2
|
|
|
|
, xz
|
|
|
|
, json-glib
|
|
|
|
, libsoup_3
|
2017-12-19 05:53:07 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-01 21:19:25 +00:00
|
|
|
pname = "osinfo-db-tools";
|
2022-02-23 19:16:39 +00:00
|
|
|
version = "1.10.0";
|
2017-12-19 05:53:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 21:28:25 +00:00
|
|
|
url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz";
|
2022-02-23 19:16:39 +00:00
|
|
|
sha256 = "sha256-gCzdU7QWcG6lhE8Ebdz7ZYwbSQa5+UDHmserxQmBymg=";
|
2017-12-19 05:53:07 +00:00
|
|
|
};
|
|
|
|
|
2022-02-23 19:16:39 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
gettext
|
|
|
|
perl
|
|
|
|
python3
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
json-glib
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
libarchive
|
|
|
|
bzip2
|
|
|
|
xz
|
|
|
|
libsoup_3
|
|
|
|
];
|
2017-12-19 05:53:07 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-19 05:53:07 +00:00
|
|
|
description = "Tools for managing the osinfo database";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://libosinfo.org/";
|
2022-02-23 19:16:39 +00:00
|
|
|
changelog = "https://gitlab.com/libosinfo/osinfo-db-tools/-/blob/v${version}/NEWS";
|
2017-12-19 05:53:07 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2022-07-28 14:24:15 +00:00
|
|
|
platforms = platforms.unix;
|
2017-12-19 05:53:07 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|