c261d7a847
svn path=/nixpkgs/trunk/; revision=19777
22 lines
511 B
Nix
22 lines
511 B
Nix
{ fetchurl, stdenv, openssl }:
|
|
|
|
let
|
|
pkgname = "ipmitool";
|
|
version = "1.8.11";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "${pkgname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pkgname}/${pkgname}-${version}.tar.gz";
|
|
sha256 = "5612f4835d89a6f2cede588eef978a05d63435cf2646256300d9785d8020a13e";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
meta = {
|
|
description = ''Command-line interface to IPMI-enabled devices'';
|
|
license = "BSD";
|
|
homepage = "http://ipmitool.sourceforge.net";
|
|
};
|
|
}
|