pkgs/tools/system/ipmitool: command-line interface to IPMI-enabled devices

Initial version 1.8.9.

svn path=/nixpkgs/trunk/; revision=19542
This commit is contained in:
Peter Simons 2010-01-19 15:58:19 +00:00
parent ca68ccdaf4
commit 81324b5de0
2 changed files with 30 additions and 4 deletions

View File

@ -0,0 +1,22 @@
{ fetchurl, stdenv }:
let
pkgname = "ipmitool";
version = "1.8.9";
in
stdenv.mkDerivation {
name = "${pkgname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
sha256 = "1d6bf2595d1fd0dbef206c300cc666d3d079548ba97f727077d61c4736a7e63a";
};
buildInputs = [];
meta = {
description = ''Command-line interface to IPMI-enabled devices'';
license = "BSD";
homepage = "http://ipmitool.sourceforge.net";
};
}

View File

@ -903,6 +903,10 @@ let
inherit fetchurl stdenv;
};
ipmitool = import ../tools/system/ipmitool {
inherit fetchurl stdenv;
};
jdiskreport = import ../tools/misc/jdiskreport {
inherit fetchurl stdenv unzip jdk;
};