about summary refs log tree commit diff
path: root/pkgs/tools/system/ipmitool
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-01-19 16:21:40 +0000
committerPeter Simons <simons@cryp.to>2010-01-19 16:21:40 +0000
commit35424c8836a371040ce0098d32750d4ef3ee05db (patch)
treea40337470631dfe150910bb6c302a3a28af7132e /pkgs/tools/system/ipmitool
parent81324b5de0a098c2159f4fb6ed7ecfe773435c78 (diff)
pkgs/tools/system/ipmitool/default.nix: add openssl dependency to enable lanplus protocol
svn path=/nixpkgs/trunk/; revision=19543
Diffstat (limited to 'pkgs/tools/system/ipmitool')
-rw-r--r--pkgs/tools/system/ipmitool/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/ipmitool/default.nix b/pkgs/tools/system/ipmitool/default.nix
index 73e8877fc9378..87b77a483e386 100644
--- a/pkgs/tools/system/ipmitool/default.nix
+++ b/pkgs/tools/system/ipmitool/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv }:
+{ fetchurl, stdenv, openssl }:
 
 let
   pkgname = "ipmitool";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
     sha256 = "1d6bf2595d1fd0dbef206c300cc666d3d079548ba97f727077d61c4736a7e63a";
   };
 
-  buildInputs = [];
+  buildInputs = [ openssl ];
 
   meta = {
     description = ''Command-line interface to IPMI-enabled devices'';