about summary refs log tree commit diff
path: root/pkgs/servers/tacacsplus
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-08-21 14:22:42 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2020-09-12 23:04:49 +0200
commit120653bd50e593eace28d3d9761cd3555c02d8cc (patch)
tree4d4a27085861731b0ba221cb52b71dab0d6edfc4 /pkgs/servers/tacacsplus
parent9ad913dd6fd4ad138a71e43ab4c742a673b84ea1 (diff)
tacacsplus: fix build w/glibc-2.32
Diffstat (limited to 'pkgs/servers/tacacsplus')
-rw-r--r--pkgs/servers/tacacsplus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/tacacsplus/default.nix b/pkgs/servers/tacacsplus/default.nix
index 5010838cbe0da..296b79f0a4441 100644
--- a/pkgs/servers/tacacsplus/default.nix
+++ b/pkgs/servers/tacacsplus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, tcp_wrappers, flex, bison, perl }:
+{ stdenv, fetchurl, tcp_wrappers, flex, bison, perl, libnsl }:
 
 stdenv.mkDerivation rec {
   pname = "tacacsplus";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ flex bison ];
-  buildInputs = [ tcp_wrappers perl ];
+  buildInputs = [ tcp_wrappers perl libnsl ];
 
   meta = with stdenv.lib; {
     description = "A protocol for authentication, authorization and accounting (AAA) services for routers and network devices";