1 { stdenv, fetchurl, popt, ncurses, python3, readline, lib, openssl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/openipmi/OpenIPMI-${version}.tar.gz";
9 sha256 = "sha256-oEAxSPpfe+2TDJWKTRxVgEfic3Y6QIs6A2jtwTfMVdk=";
12 buildInputs = [ ncurses popt python3 readline openssl ];
14 outputs = [ "out" "lib" "dev" "man" ];
17 homepage = "https://openipmi.sourceforge.io/";
18 description = "User-level library that provides a higher-level abstraction of IPMI and generic services";
19 license = with licenses; [ gpl2Only lgpl2Only ];
20 platforms = platforms.linux;
21 maintainers = with maintainers; [ arezvov ] ++ teams.c3d2.members;