3
0
Fork 0
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:
Peter Simons 2010-01-19 16:21:40 +00:00
parent 81324b5de0
commit 35424c8836
2 changed files with 3 additions and 3 deletions

View file

@ -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'';

View file

@ -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 {