srelay: fix build with libxcrypt

authored by Franz Pletz and committed by Martin Weinelt cfc636c3 57f4391a

+3 -1
+3 -1
pkgs/tools/networking/srelay/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, libxcrypt }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "srelay"; ··· 10 10 }; 11 11 12 12 patches = [ ./arm.patch ]; 13 + 14 + buildInputs = [ libxcrypt ]; 13 15 14 16 installPhase = "install -D srelay $out/bin/srelay"; 15 17