Merge pull request #132598 from arezvov/openipmi

openipmi: add new package

authored by

Sandro and committed by
GitHub
9695eaee 00f31216

+25
+23
pkgs/tools/system/openipmi/default.nix
··· 1 + { stdenv, fetchurl, popt, ncurses, python3, readline, lib }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "OpenIPMI"; 5 + version = "2.0.31"; 6 + 7 + src = fetchurl { 8 + url = "mirror://sourceforge/openipmi/OpenIPMI-${version}.tar.gz"; 9 + sha256 = "05wpkn74nxqp5p6sa2yaf2ajrh8b0gfkb7y4r86lnigz4rvz6lkh"; 10 + }; 11 + 12 + buildInputs = [ ncurses popt python3 readline ]; 13 + 14 + outputs = [ "out" "lib" "dev" "man" ]; 15 + 16 + meta = with lib; { 17 + homepage = "https://openipmi.sourceforge.io/"; 18 + description = "A 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 SuperSandro2000 ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 6716 6716 6717 6717 np2kai = callPackage ../misc/emulators/np2kai { }; 6718 6718 6719 + openipmi = callPackage ../tools/system/openipmi { }; 6720 + 6719 6721 ox = callPackage ../applications/editors/ox { }; 6720 6722 6721 6723 file-rename = callPackage ../tools/filesystems/file-rename { };