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

46 lines
1.3 KiB
Nix
Raw Normal View History

2019-08-21 03:25:37 +02:00
{ stdenv, fetchurl, fetchpatch, pkgconfig, gettext, gobject-introspection, gtk-doc, docbook_xsl
, glib, libsoup, libxml2, libxslt, check, curl, perl, hwdata, osinfo-db, substituteAll
, vala ? null
}:
stdenv.mkDerivation rec {
2019-05-09 15:32:15 +02:00
pname = "libosinfo";
2019-08-21 03:25:37 +02:00
version = "1.6.0";
src = fetchurl {
2019-05-09 15:32:15 +02:00
url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.gz";
2019-08-21 03:25:37 +02:00
sha256 = "1iwh35mahch1ls3sgq7wz8kamxrxisrff5ciqzyh2qxlrqf5qf1w";
};
2017-12-19 07:54:44 +01:00
outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [
2019-08-21 03:25:37 +02:00
pkgconfig vala gettext gobject-introspection gtk-doc docbook_xsl
2018-08-08 20:49:12 +02:00
];
2017-12-19 07:54:44 +01:00
buildInputs = [ glib libsoup libxml2 libxslt ];
2018-08-08 20:49:12 +02:00
checkInputs = [ check curl perl ];
2017-12-19 07:54:44 +01:00
patches = [
2019-08-21 03:25:37 +02:00
(substituteAll {
src = ./osinfo-db-data-dir.patch;
osinfo_db_data_dir = "${osinfo-db}/share";
2019-07-16 16:14:35 +02:00
})
2017-12-19 07:54:44 +01:00
];
configureFlags = [
2018-10-26 21:20:27 +02:00
"--with-usb-ids-path=${hwdata}/share/hwdata/usb.ids"
"--with-pci-ids-path=${hwdata}/share/hwdata/pci.ids"
2017-12-19 07:54:44 +01:00
"--enable-gtk-doc"
];
2017-12-19 07:54:44 +01:00
doCheck = true;
meta = with stdenv.lib; {
2017-12-19 07:54:44 +01: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 ];
};
}