95282e3cfc
s6_addr16 is not available on Mac OS X.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ fetchurl, stdenv, openssl, static ? false }:
|
|
|
|
let
|
|
pkgname = "ipmitool";
|
|
version = "1.8.15";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "${pkgname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
|
|
sha256 = "0y6g8xg9p854n7xm3kds8m3d53jrsllnknp8lcr3jscf99j4x5ph";
|
|
};
|
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace src/plugins/ipmi_intf.c --replace "s6_addr16" "s6_addr"
|
|
'';
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray=(
|
|
--infodir=$out/share/info
|
|
--mandir=$out/share/man
|
|
${if static then "LDFLAGS=-static --enable-static --disable-shared" else "--enable-shared"}
|
|
)
|
|
'';
|
|
makeFlags = if static then "AM_LDFLAGS=-all-static" else "";
|
|
dontDisableStatic = static;
|
|
|
|
meta = {
|
|
description = ''Command-line interface to IPMI-enabled devices'';
|
|
license = stdenv.lib.licenses.bsd3;
|
|
homepage = http://ipmitool.sourceforge.net;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|