libsmbios: updated to version 2.2.28 to fix build errors with GCC 4.6.1

svn path=/nixpkgs/trunk/; revision=29684
This commit is contained in:
Peter Simons 2011-10-06 10:23:31 +00:00
parent 161c5bdafa
commit e543b455df

View File

@ -1,13 +1,16 @@
{ stdenv, fetchurl, pkgconfig, libxml2, perl }: { stdenv, fetchurl, pkgconfig, libxml2, perl }:
stdenv.mkDerivation rec { let
name = "libsmbios-2.2.19"; name = "libsmbios-2.2.28";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl { src = fetchurl {
url = "http://linux.dell.com/libsmbios/download/libsmbios/${name}/${name}.tar.gz"; url = "http://linux.dell.com/libsmbios/download/libsmbios/${name}/${name}.tar.gz";
sha256 = "0f4wnjml734ssg583r448ypax7vf3f9n8gybzvzg170lc3byayhv"; sha256 = "03m0n834w49acwbf5cf9ync1ksnn2jkwaysvy7584y60qpmngb91";
}; };
buildInputs = [ pkgconfig libxml2 perl ]; buildInputs = [ pkgconfig libxml2 perl ];
# It tries to install some Python stuff even when Python is disabled. # It tries to install some Python stuff even when Python is disabled.
@ -16,13 +19,16 @@ stdenv.mkDerivation rec {
# It forgets to install headers. # It forgets to install headers.
postInstall = postInstall =
'' ''
cp -a src/include/* $out/include cp -va "src/include/"* "$out/include/"
cp -a out/public-include/* $out/include cp -va "out/public-include/"* "$out/include/"
''; # */ '';
meta = { meta = {
homepage = http://linux.dell.com/libsmbios/main/index.html; homepage = "http://linux.dell.com/libsmbios/main";
description = "A library to obtain BIOS information"; description = "a library to obtain BIOS information";
license = "GPLv2+"; # alternatively, under the Open Software License version 2.1 license = stdenv.lib.licenses.gpl2Plus; # alternatively, under the Open Software License version 2.1
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.simons ];
}; };
} }