GNU FreeIPMI 1.0.2.
svn path=/nixpkgs/trunk/; revision=26084
This commit is contained in:
parent
2fafe4612c
commit
ca1aa628b9
@ -1,48 +1,39 @@
|
|||||||
x@{builderDefsPackage
|
{ fetchurl, stdenv, libgcrypt, readline }:
|
||||||
, libgcrypt, readline
|
|
||||||
, ...}:
|
|
||||||
builderDefsPackage
|
|
||||||
(a :
|
|
||||||
let
|
|
||||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
|
||||||
[];
|
|
||||||
|
|
||||||
buildInputs = map (n: builtins.getAttr n x)
|
stdenv.mkDerivation rec {
|
||||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
name = "freeipmi-1.0.2";
|
||||||
sourceInfo = rec {
|
|
||||||
baseName="freeipmi";
|
src = fetchurl {
|
||||||
version="1.0.1";
|
url = "mirror://gnu/freeipmi/${name}.tar.gz";
|
||||||
name="${baseName}-${version}";
|
sha256 = "1v7f9y6dsb6bg5yribq1i66s6kr4hq6g95fhh9k7h1dgcf2qgpyj";
|
||||||
url="http://download.gluster.com/pub/${baseName}/${version}/${name}.tar.gz";
|
|
||||||
hash="11j0jvarxvzj89c2fg49ghz75gljdkacid6631q313kc1bd2l0ms";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
src = a.fetchurl {
|
|
||||||
url = sourceInfo.url;
|
|
||||||
sha256 = sourceInfo.hash;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit (sourceInfo) name version;
|
buildInputs = [ libgcrypt readline ];
|
||||||
inherit buildInputs;
|
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
doCheck = true;
|
||||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "IPMI utility";
|
description = "GNU FreeIPMI, an implementation of the Intelligent Platform Management Interface";
|
||||||
maintainers = with a.lib.maintainers;
|
|
||||||
[
|
|
||||||
raskin
|
|
||||||
];
|
|
||||||
platforms = with a.lib.platforms;
|
|
||||||
linux;
|
|
||||||
license = a.lib.licenses.gpl3;
|
|
||||||
};
|
|
||||||
passthru = {
|
|
||||||
updateInfo = {
|
|
||||||
downloadPage = "http://www.gnu.org/software/freeipmi/download.html";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}) x
|
|
||||||
|
|
||||||
|
longDescription =
|
||||||
|
'' GNU FreeIPMI provides in-band and out-of-band IPMI software based on
|
||||||
|
the IPMI v1.5/2.0 specification. The IPMI specification defines a
|
||||||
|
set of interfaces for platform management and is implemented by a
|
||||||
|
number vendors for system management. The features of IPMI that
|
||||||
|
most users will be interested in are sensor monitoring, system event
|
||||||
|
monitoring, power control, and serial-over-LAN (SOL). The FreeIPMI
|
||||||
|
tools and libraries listed below should provide users with the
|
||||||
|
ability to access and utilize these and many other features. A
|
||||||
|
number of useful features for large HPC or cluster environments have
|
||||||
|
also been implemented into FreeIPMI. See the README or FAQ for more
|
||||||
|
info.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://www.gnu.org/software/freeipmi/;
|
||||||
|
|
||||||
|
license = "GPLv3+";
|
||||||
|
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ raskin ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user