2018-02-16 16:51:47 -08:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, help2man, gettext
|
2018-05-12 15:55:05 -07:00
|
|
|
, libxml2, perl, python3, doxygen }:
|
2007-06-07 15:02:12 -07:00
|
|
|
|
2017-11-11 12:42:33 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-27 05:30:46 -08:00
|
|
|
name = "libsmbios-${version}";
|
2018-02-16 16:51:47 -08:00
|
|
|
version = "2.4.1";
|
2009-09-28 08:33:42 -07:00
|
|
|
|
2017-11-11 12:42:33 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dell";
|
|
|
|
repo = "libsmbios";
|
|
|
|
rev = "v${version}";
|
2018-02-16 16:51:47 -08:00
|
|
|
sha256 = "158w5fz777is7nr5yhpr69b17nn6i1pavycxq1q9899frrpkzbsc";
|
2007-06-07 15:02:12 -07:00
|
|
|
};
|
2011-10-06 03:23:31 -07:00
|
|
|
|
2018-02-16 16:51:47 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook doxygen gettext libxml2 help2man perl pkgconfig ];
|
2017-11-11 12:42:33 -08:00
|
|
|
|
2018-05-12 15:55:05 -07:00
|
|
|
buildInputs = [ python3 ];
|
|
|
|
|
|
|
|
configureFlags = [ "--disable-graphviz" ];
|
2009-09-28 08:33:42 -07:00
|
|
|
|
2017-11-11 12:42:33 -08:00
|
|
|
enableParallelBuilding = true;
|
2009-09-28 08:33:42 -07:00
|
|
|
|
2018-02-16 16:51:47 -08:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/include
|
|
|
|
cp -a src/include/smbios_c $out/include/
|
|
|
|
cp -a out/public-include/smbios_c $out/include/
|
|
|
|
'';
|
2009-09-28 08:33:42 -07:00
|
|
|
|
2017-11-11 12:42:33 -08:00
|
|
|
preFixup = ''rm -rf "$(pwd)" ''; # Hack to avoid TMPDIR in RPATHs
|
2017-05-16 07:35:52 -07:00
|
|
|
|
2018-02-16 16:51:47 -08:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-11 12:42:33 -08:00
|
|
|
homepage = https://github.com/dell/libsmbios;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A library to obtain BIOS information";
|
2018-02-16 16:51:47 -08:00
|
|
|
license = with licenses; [ osl21 gpl2Plus ];
|
|
|
|
maintainers = with maintainers; [ ];
|
2017-09-13 05:29:58 -07:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2009-02-12 11:18:16 -08:00
|
|
|
};
|
2007-06-07 15:02:12 -07:00
|
|
|
}
|