nixpkgs/pkgs/by-name/ng/ngadmin/package.nix

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

37 lines
920 B
Nix
Raw Normal View History

{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
readline,
withReadline ? true,
enableEmu ? true,
enableSpy ? true,
}:
2021-01-15 19:55:01 +00:00
stdenv.mkDerivation {
pname = "ngadmin";
version = "unstable-2020-10-05";
2021-01-15 19:55:01 +00:00
src = fetchFromGitHub {
owner = "Alkorin";
repo = "ngadmin";
rev = "5bf8650ce6d465b8cb1e570548819f0cefe9a87d";
sha256 = "15vixhwqcpbjdxlaznans9w63kwl29mdkds6spvbv2i7l33qnhq4";
2021-01-15 19:55:01 +00:00
};
nativeBuildInputs = [ autoreconfHook ] ++ lib.optional withReadline readline;
enableParallelBuilding = true;
2024-08-16 17:23:27 +00:00
configureFlags =
lib.optional (!withReadline) "--without-readline"
++ lib.optional enableEmu "--enable-emu"
++ lib.optional enableSpy "--enable-spy";
2021-01-15 19:55:01 +00:00
meta = with lib; {
description = "Netgear switch (NSDP) administration tool";
homepage = "https://www.netgeek.ovh/wiki/projets:ngadmin";
license = licenses.gpl2Only;
maintainers = [ maintainers.astro ];
};
}