2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2020-03-19 00:25:28 +00:00
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2020-03-19 00:28:01 +00:00
|
|
|
, meson
|
|
|
|
, ninja
|
2020-03-19 00:25:28 +00:00
|
|
|
, gettext
|
|
|
|
, gobject-introspection
|
|
|
|
, gtk-doc
|
|
|
|
, docbook_xsl
|
|
|
|
, glib
|
2022-08-15 18:14:13 +00:00
|
|
|
, libsoup_3
|
2020-03-19 00:25:28 +00:00
|
|
|
, libxml2
|
|
|
|
, libxslt
|
|
|
|
, check
|
|
|
|
, curl
|
|
|
|
, perl
|
|
|
|
, hwdata
|
|
|
|
, osinfo-db
|
|
|
|
, substituteAll
|
2019-08-21 01:25:37 +00:00
|
|
|
, vala ? null
|
2014-07-11 17:53:17 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-09 13:32:15 +00:00
|
|
|
pname = "libosinfo";
|
2022-02-23 19:18:34 +00:00
|
|
|
version = "1.10.0";
|
2014-07-11 17:53:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-19 00:28:01 +00:00
|
|
|
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz";
|
2022-02-23 19:18:34 +00:00
|
|
|
sha256 = "sha256-olLgD8WA3rIdoNqMCqA7jDHoRAuESMi5gUP6tHfTIwU=";
|
2014-07-11 17:53:17 +00:00
|
|
|
};
|
|
|
|
|
2022-01-19 04:21:45 +00:00
|
|
|
outputs = [ "out" "dev" ]
|
|
|
|
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "devdoc";
|
2017-12-19 06:54:44 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-03-19 00:28:01 +00:00
|
|
|
meson
|
|
|
|
ninja
|
2020-03-19 00:25:28 +00:00
|
|
|
vala
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gtk-doc
|
|
|
|
docbook_xsl
|
2020-03-19 00:28:01 +00:00
|
|
|
perl # for pod2man
|
2020-03-19 00:25:28 +00:00
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
2022-08-15 18:14:13 +00:00
|
|
|
libsoup_3
|
2020-03-19 00:25:28 +00:00
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
];
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2020-03-19 00:25:28 +00:00
|
|
|
check
|
|
|
|
curl
|
|
|
|
perl
|
2018-08-08 18:49:12 +00:00
|
|
|
];
|
2017-12-19 06:54:44 +00:00
|
|
|
|
|
|
|
patches = [
|
2019-08-21 01:25:37 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./osinfo-db-data-dir.patch;
|
|
|
|
osinfo_db_data_dir = "${osinfo-db}/share";
|
2019-07-16 14:14:35 +00:00
|
|
|
})
|
2017-12-19 06:54:44 +00:00
|
|
|
];
|
|
|
|
|
2020-03-19 00:28:01 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Dwith-usb-ids-path=${hwdata}/share/hwdata/usb.ids"
|
|
|
|
"-Dwith-pci-ids-path=${hwdata}/share/hwdata/pci.ids"
|
|
|
|
"-Denable-gtk-doc=true"
|
2014-07-11 17:53:17 +00:00
|
|
|
];
|
|
|
|
|
2020-03-27 21:27:44 +00:00
|
|
|
preCheck = ''
|
|
|
|
patchShebangs ../osinfo/check-symfile.pl ../osinfo/check-symsorting.pl
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2017-12-19 06:54:44 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2017-12-19 06:54:44 +00:00
|
|
|
description = "GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://libosinfo.org/";
|
2022-02-23 19:18:34 +00:00
|
|
|
changelog = "https://gitlab.com/libosinfo/libosinfo/-/blob/v${version}/NEWS";
|
2014-07-11 17:53:17 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2022-07-28 14:24:15 +00:00
|
|
|
platforms = platforms.unix;
|
2014-07-11 17:53:17 +00:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|