From 120653bd50e593eace28d3d9761cd3555c02d8cc Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 21 Aug 2020 14:22:42 +0200 Subject: [PATCH] tacacsplus: fix build w/glibc-2.32 --- pkgs/servers/tacacsplus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/tacacsplus/default.nix b/pkgs/servers/tacacsplus/default.nix index 5010838cbe0..296b79f0a44 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";