Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
857 B
Nix
46 lines
857 B
Nix
{
|
|
lib,
|
|
freeipmi,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
fetchFromGitHub,
|
|
tcp_wrappers,
|
|
stdenv,
|
|
expect,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "conman";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dun";
|
|
repo = "conman";
|
|
tag = "conman-${finalAttrs.version}";
|
|
hash = "sha256-CHWvHYTmTiEpEfHm3TF5aCKBOW2GsT9Vv4ehpj775NQ=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
freeipmi # For libipmiconsole.so.2
|
|
tcp_wrappers # For libwrap.so.0
|
|
expect # For conman/*.exp scripts
|
|
];
|
|
|
|
meta = {
|
|
description = "The Console Manager";
|
|
homepage = "https://github.com/dun/conman";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
frantathefranta
|
|
];
|
|
};
|
|
|
|
})
|