mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ngadmin: init at unstable-2017-11-17
This commit is contained in:
parent
8e4690c0ca
commit
910b4128f0
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/networking/ngadmin/default.nix
Normal file
22
pkgs/applications/networking/ngadmin/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, lib, fetchgit, autoreconfHook, readline }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "ngadmin";
|
||||
version = "unstable-2017-11-17";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.netgeek.ovh/c/ngadmin.git";
|
||||
rev = "95240c567b5c40129d733cbd76911ba7574e4998";
|
||||
sha256 = "052ss82fs8cxk3dqdwlh3r8q9gsm36in2lxdgwj9sljdgwg75c34";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook readline ];
|
||||
enableParallelBuild = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Netgear switch (NSDP) administration tool";
|
||||
homepage = "https://www.netgeek.ovh/wiki/projets:ngadmin";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = [ maintainers.astro ];
|
||||
};
|
||||
}
|
|
@ -2542,6 +2542,8 @@ in
|
|||
|
||||
nextdns = callPackage ../applications/networking/nextdns { };
|
||||
|
||||
ngadmin = callPackage ../applications/networking/ngadmin { };
|
||||
|
||||
nfdump = callPackage ../tools/networking/nfdump { };
|
||||
|
||||
nfstrace = callPackage ../tools/networking/nfstrace { };
|
||||
|
|
Loading…
Reference in a new issue