forked from mirrors/nixpkgs
pkgs/tools/system/ipmitool/default.nix: add openssl dependency to enable lanplus protocol
svn path=/nixpkgs/trunk/; revision=19543
This commit is contained in:
parent
81324b5de0
commit
35424c8836
|
@ -1,4 +1,4 @@
|
||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv, openssl }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pkgname = "ipmitool";
|
pkgname = "ipmitool";
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||||
sha256 = "1d6bf2595d1fd0dbef206c300cc666d3d079548ba97f727077d61c4736a7e63a";
|
sha256 = "1d6bf2595d1fd0dbef206c300cc666d3d079548ba97f727077d61c4736a7e63a";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [];
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = ''Command-line interface to IPMI-enabled devices'';
|
description = ''Command-line interface to IPMI-enabled devices'';
|
||||||
|
|
|
@ -904,7 +904,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
ipmitool = import ../tools/system/ipmitool {
|
ipmitool = import ../tools/system/ipmitool {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv openssl;
|
||||||
};
|
};
|
||||||
|
|
||||||
jdiskreport = import ../tools/misc/jdiskreport {
|
jdiskreport = import ../tools/misc/jdiskreport {
|
||||||
|
|
Loading…
Reference in a new issue