nixpkgs/pkgs/tools/system/openipmi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
740 B
Nix
Raw Normal View History

2022-06-21 18:44:59 +00:00
{ stdenv, fetchurl, popt, ncurses, python39, readline, lib }:
2021-08-03 21:21:43 +00:00
stdenv.mkDerivation rec {
pname = "OpenIPMI";
2021-12-01 20:44:16 +00:00
version = "2.0.32";
2021-08-03 21:21:43 +00:00
src = fetchurl {
url = "mirror://sourceforge/openipmi/OpenIPMI-${version}.tar.gz";
2021-12-01 20:44:16 +00:00
sha256 = "sha256-9tD9TAp0sF+AkHIp0LJw9UyiMpS8wRl5+LjRJ2Z4aUU=";
2021-08-03 21:21:43 +00:00
};
2022-06-21 18:44:59 +00:00
buildInputs = [ ncurses popt python39 readline ];
2021-08-03 21:21:43 +00:00
outputs = [ "out" "lib" "dev" "man" ];
meta = with lib; {
homepage = "https://openipmi.sourceforge.io/";
description = "A user-level library that provides a higher-level abstraction of IPMI and generic services";
license = with licenses; [ gpl2Only lgpl2Only ];
platforms = platforms.linux;
2022-06-22 17:58:57 +00:00
maintainers = with maintainers; [ arezvov ] ++ teams.c3d2.members;
2021-08-03 21:21:43 +00:00
};
}