nixpkgs/pkgs/servers/tacacsplus/default.nix

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

23 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, tcp_wrappers, flex, bison, perl, libnsl }:
2019-07-10 20:35:41 +03:00
stdenv.mkDerivation rec {
2019-09-03 23:23:07 +03:00
pname = "tacacsplus";
2019-07-10 20:35:41 +03:00
version = "4.0.4.28";
src = fetchurl {
url = "ftp://ftp.shrubbery.net/pub/tac_plus/tacacs-F${version}.tar.gz";
hash = "sha256-FH8tyY0m0vk/Crp2yYjO0Zb/4cAB3C6R94ihosdHIZ4=";
2019-07-10 20:35:41 +03:00
};
nativeBuildInputs = [ flex bison ];
2020-08-21 15:22:42 +03:00
buildInputs = [ tcp_wrappers perl libnsl ];
2019-07-10 20:35:41 +03:00
meta = with lib; {
2019-07-10 20:35:41 +03: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 13:49:07 +03:00
maintainers = with maintainers; [ _0x4A6F ];
2019-07-10 20:35:41 +03:00
platforms = with platforms; linux;
};
}