nixpkgs/pkgs/development/libraries/libosinfo/default.nix

84 lines
1.6 KiB
Nix
Raw Normal View History

2020-03-19 00:25:28 +00:00
{ stdenv
, fetchurl
, fetchpatch
, pkgconfig
, meson
, ninja
2020-03-19 00:25:28 +00:00
, gettext
, gobject-introspection
, gtk-doc
, docbook_xsl
, glib
, libsoup
, libxml2
, libxslt
, check
, curl
, perl
, hwdata
, osinfo-db
, substituteAll
2019-08-21 02:25:37 +01:00
, vala ? null
}:
stdenv.mkDerivation rec {
2019-05-09 14:32:15 +01:00
pname = "libosinfo";
version = "1.7.1";
src = fetchurl {
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz";
sha256 = "1s97sv24bybggjx6hgqba2qdqz3ivfpd4cmkh4zm5y59sim109mv";
};
2017-12-19 06:54:44 +00:00
outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [
2020-03-19 00:25:28 +00:00
pkgconfig
meson
ninja
2020-03-19 00:25:28 +00:00
vala
gettext
gobject-introspection
gtk-doc
docbook_xsl
perl # for pod2man
2020-03-19 00:25:28 +00:00
];
buildInputs = [
glib
libsoup
libxml2
libxslt
];
checkInputs = [
check
curl
perl
2018-08-08 19:49:12 +01:00
];
2017-12-19 06:54:44 +00:00
patches = [
2019-08-21 02:25:37 +01:00
(substituteAll {
src = ./osinfo-db-data-dir.patch;
osinfo_db_data_dir = "${osinfo-db}/share";
2019-07-16 15:14:35 +01:00
})
2017-12-19 06:54:44 +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"
];
# FIXME: fails two new tests added in 1.7.1:
# libosinfo:symbols / check-symfile
# 3/24 libosinfo:symbols / check-symsorting
doCheck = false;
2017-12-19 06:54:44 +00:00
meta = with stdenv.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";
homepage = https://libosinfo.org/;
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}