openipmi: enable compile with openssl

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
Florian Brandes 2024-06-08 21:54:21 +02:00
parent 2f967ecb03
commit b30a172bd4
No known key found for this signature in database
GPG Key ID: 074048E893713170

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, popt, ncurses, python3, readline, lib }:
{ stdenv, fetchurl, popt, ncurses, python3, readline, lib, openssl }:
stdenv.mkDerivation rec {
pname = "OpenIPMI";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-sFkRT2KZ1z8E/252oIV6Crgao2Le6ZZE0layI4ckN60=";
};
buildInputs = [ ncurses popt python3 readline ];
buildInputs = [ ncurses popt python3 readline openssl ];
outputs = [ "out" "lib" "dev" "man" ];