2017-06-20 02:43:36 +02:00
|
|
|
{ stdenv, lib, fetchurl, openssl, static ? false }:
|
2010-01-19 16:58:19 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
pkgname = "ipmitool";
|
2017-06-20 02:43:36 +02:00
|
|
|
version = "1.8.18";
|
2010-01-19 16:58:19 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${pkgname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
|
2017-06-20 02:43:36 +02:00
|
|
|
sha256 = "0kfh8ny35rvwxwah4yv91a05qwpx74b5slq2lhrh71wz572va93m";
|
2010-01-19 16:58:19 +01:00
|
|
|
};
|
|
|
|
|
2015-11-18 19:31:14 +01:00
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace src/plugins/ipmi_intf.c --replace "s6_addr16" "s6_addr"
|
|
|
|
'';
|
|
|
|
|
2010-01-19 17:21:40 +01:00
|
|
|
buildInputs = [ openssl ];
|
2010-12-06 19:01:57 +01: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 13:47:31 +01:00
|
|
|
makeFlags = if static then "AM_LDFLAGS=-all-static" else "";
|
2010-12-06 19:01:57 +01:00
|
|
|
dontDisableStatic = static;
|
2010-01-19 16:58:19 +01:00
|
|
|
|
2017-06-20 02:43:36 +02:00
|
|
|
meta = with lib; {
|
2010-01-19 16:58:19 +01:00
|
|
|
description = ''Command-line interface to IPMI-enabled devices'';
|
2017-06-20 02:43:36 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = https://sourceforge.net/projects/ipmitool/;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2010-01-19 16:58:19 +01:00
|
|
|
};
|
|
|
|
}
|