biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / tacacsplus / default.nix
blob7761695042f47b46db1391b68a91d606320e5feb
1 { lib, stdenv, fetchurl, tcp_wrappers, flex, bison, perl, libnsl }:
3 stdenv.mkDerivation rec {
4   pname = "tacacsplus";
5   version = "4.0.4.28";
7   src = fetchurl {
8     url = "ftp://ftp.shrubbery.net/pub/tac_plus/tacacs-F${version}.tar.gz";
9     hash = "sha256-FH8tyY0m0vk/Crp2yYjO0Zb/4cAB3C6R94ihosdHIZ4=";
10   };
12   nativeBuildInputs = [ flex bison ];
13   buildInputs = [ tcp_wrappers perl libnsl ];
15   meta = with lib; {
16     description = "A protocol for authentication, authorization and accounting (AAA) services for routers and network devices";
17     homepage = "http://www.shrubbery.net/tac_plus/";
18     license = licenses.free;
19     maintainers = with maintainers; [ _0x4A6F ];
20     platforms = with platforms; linux;
21   };