biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / openipmi / default.nix
blob4db4048fcd707a5cb117356166677a0eb4b23685
1 { stdenv, fetchurl, popt, ncurses, python3, readline, lib, openssl }:
3 stdenv.mkDerivation rec {
4   pname = "OpenIPMI";
5   version = "2.0.36";
7   src = fetchurl {
8     url = "mirror://sourceforge/openipmi/OpenIPMI-${version}.tar.gz";
9     sha256 = "sha256-oEAxSPpfe+2TDJWKTRxVgEfic3Y6QIs6A2jtwTfMVdk=";
10   };
12   buildInputs = [ ncurses popt python3 readline openssl ];
14   outputs = [ "out" "lib" "dev" "man" ];
16   meta = with lib; {
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;
22   };