nixpkgs/pkgs/servers/tacacsplus/default.nix

23 lines
725 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, tcp_wrappers, flex, bison, perl, libnsl }:
2019-07-10 17:35:41 +00:00
stdenv.mkDerivation rec {
2019-09-03 20:23:07 +00:00
pname = "tacacsplus";
2019-07-10 17:35:41 +00:00
version = "4.0.4.28";
src = fetchurl {
url = "ftp://ftp.shrubbery.net/pub/tac_plus/tacacs-F${version}.tar.gz";
sha256 = "17i18z3s58c8yy8jxp01q3hzz5nirs4cjxms18zzkli6ip4jszql";
};
nativeBuildInputs = [ flex bison ];
2020-08-21 12:22:42 +00:00
buildInputs = [ tcp_wrappers perl libnsl ];
2019-07-10 17:35:41 +00:00
meta = with lib; {
2019-07-10 17:35:41 +00:00
description = "A protocol for authentication, authorization and accounting (AAA) services for routers and network devices";
homepage = "http://www.shrubbery.net/tac_plus/";
license = licenses.free;
2020-07-29 10:49:07 +00:00
maintainers = with maintainers; [ _0x4A6F ];
2019-07-10 17:35:41 +00:00
platforms = with platforms; linux;
};
}