openipmi: enable compile with openssl

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2024-06-08 21:54:21 +02:00
parent b5e50b621c
commit 67f62895b5

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" ];