forked from mirrors/nixpkgs
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:
parent
ca68ccdaf4
commit
81324b5de0
2 changed files with 30 additions and 4 deletions
22
pkgs/tools/system/ipmitool/default.nix
Normal file
22
pkgs/tools/system/ipmitool/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -903,6 +903,10 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ipmitool = import ../tools/system/ipmitool {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
jdiskreport = import ../tools/misc/jdiskreport {
|
jdiskreport = import ../tools/misc/jdiskreport {
|
||||||
inherit fetchurl stdenv unzip jdk;
|
inherit fetchurl stdenv unzip jdk;
|
||||||
};
|
};
|
||||||
|
@ -1678,7 +1682,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
wicd = import ../tools/networking/wicd {
|
wicd = import ../tools/networking/wicd {
|
||||||
inherit stdenv fetchurl python pygobject pycairo pyGtkGlade pythonDBus
|
inherit stdenv fetchurl python pygobject pycairo pyGtkGlade pythonDBus
|
||||||
wpa_supplicant dhcp wirelesstools nettools iproute;
|
wpa_supplicant dhcp wirelesstools nettools iproute;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4253,7 +4257,7 @@ let
|
||||||
|
|
||||||
liquidwar = builderDefsPackage ../games/liquidwar {
|
liquidwar = builderDefsPackage ../games/liquidwar {
|
||||||
inherit (xlibs) xproto libX11 libXrender;
|
inherit (xlibs) xproto libX11 libXrender;
|
||||||
inherit gmp guile mesa libjpeg libpng
|
inherit gmp guile mesa libjpeg libpng
|
||||||
expat gettext perl
|
expat gettext perl
|
||||||
SDL SDL_image SDL_mixer SDL_ttf
|
SDL SDL_image SDL_mixer SDL_ttf
|
||||||
curl sqlite
|
curl sqlite
|
||||||
|
@ -8331,7 +8335,7 @@ let
|
||||||
|
|
||||||
ncbiCTools = builderDefsPackage ../development/libraries/ncbi {
|
ncbiCTools = builderDefsPackage ../development/libraries/ncbi {
|
||||||
inherit tcsh mesa lesstif;
|
inherit tcsh mesa lesstif;
|
||||||
inherit (xlibs) libX11 libXaw xproto libXt libSM libICE
|
inherit (xlibs) libX11 libXaw xproto libXt libSM libICE
|
||||||
libXmu libXext;
|
libXmu libXext;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -8360,7 +8364,7 @@ let
|
||||||
|
|
||||||
content = builderDefsPackage ../applications/science/math/content {
|
content = builderDefsPackage ../applications/science/math/content {
|
||||||
inherit mesa lesstif;
|
inherit mesa lesstif;
|
||||||
inherit (xlibs) libX11 libXaw xproto libXt libSM libICE
|
inherit (xlibs) libX11 libXaw xproto libXt libSM libICE
|
||||||
libXmu libXext libXcursor;
|
libXmu libXext libXcursor;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue