nixpkgs/pkgs/os-specific/linux/libsmbios/default.nix

33 lines
954 B
Nix
Raw Normal View History

2017-02-27 13:30:46 +00:00
{ stdenv, fetchurl, pkgconfig, libxml2, perl, autoreconfHook, doxygen }:
let
2017-02-27 13:30:46 +00:00
version = "2.3.2";
in
stdenv.mkDerivation {
2017-02-27 13:30:46 +00:00
name = "libsmbios-${version}";
src = fetchurl {
2017-02-27 13:30:46 +00:00
url = "https://github.com/dell/libsmbios/archive/v${version}.tar.gz";
sha256 = "0kvi36jrvhspyyq0pjfdyvzvimdn27fvbdpf429qm3xdmfi78y2j";
};
2017-02-27 13:30:46 +00:00
buildInputs = [ pkgconfig libxml2 perl autoreconfHook doxygen ];
# It tries to install some Python stuff even when Python is disabled.
installFlags = "pkgpythondir=$(TMPDIR)/python";
postInstall =
''
2017-02-27 13:30:46 +00:00
mkdir -p $out/include
cp -va "src/include/"* "$out/include/"
cp -va "out/public-include/"* "$out/include/"
'';
meta = {
homepage = "http://linux.dell.com/libsmbios/main";
description = "A library to obtain BIOS information";
license = stdenv.lib.licenses.gpl2Plus; # alternatively, under the Open Software License version 2.1
platforms = stdenv.lib.platforms.linux;
};
}