Merge pull request #318360 from gador/openipmi-enable-openssl

openipmi: enable compile with openssl
This commit is contained in:
Weijia Wang 2024-06-10 17:02:17 +02:00 committed by GitHub
commit fbc203b33b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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