2010-02-03 12:47:31 +00:00
|
|
|
{ fetchurl, stdenv, openssl, static ? false }:
|
2010-01-19 15:58:19 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pkgname = "ipmitool";
|
2015-01-27 12:35:09 +00:00
|
|
|
version = "1.8.15";
|
2010-01-19 15:58:19 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${pkgname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
|
2015-01-27 12:35:09 +00:00
|
|
|
sha256 = "0y6g8xg9p854n7xm3kds8m3d53jrsllnknp8lcr3jscf99j4x5ph";
|
2010-01-19 15:58:19 +00:00
|
|
|
};
|
|
|
|
|
2015-11-18 18:31:14 +00:00
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace src/plugins/ipmi_intf.c --replace "s6_addr16" "s6_addr"
|
|
|
|
'';
|
|
|
|
|
2010-01-19 16:21:40 +00:00
|
|
|
buildInputs = [ openssl ];
|
2010-12-06 18:01:57 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
--infodir=$out/share/info
|
|
|
|
--mandir=$out/share/man
|
|
|
|
${if static then "LDFLAGS=-static --enable-static --disable-shared" else "--enable-shared"}
|
|
|
|
)
|
|
|
|
'';
|
2010-02-03 12:47:31 +00:00
|
|
|
makeFlags = if static then "AM_LDFLAGS=-all-static" else "";
|
2010-12-06 18:01:57 +00:00
|
|
|
dontDisableStatic = static;
|
2010-01-19 15:58:19 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Command-line interface to IPMI-enabled devices'';
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
homepage = http://ipmitool.sourceforge.net;
|
2010-12-06 18:01:57 +00:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2010-01-19 15:58:19 +00:00
|
|
|
};
|
|
|
|
}
|