2010-02-03 12:47:31 +00:00
|
|
|
{ fetchurl, stdenv, openssl, static ? false }:
|
2010-01-19 15:58:19 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pkgname = "ipmitool";
|
2014-01-13 16:32:05 +00:00
|
|
|
version = "1.8.13";
|
2010-01-19 15:58:19 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${pkgname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
|
2014-01-13 16:32:05 +00:00
|
|
|
sha256 = "0drkfa1spqh1vlzrx7jwm3cw1qar46a9xvqsgycn92ylgsr395n1";
|
2010-01-19 15:58:19 +00:00
|
|
|
};
|
|
|
|
|
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'';
|
|
|
|
license = "BSD";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|