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 }: 2 3 stdenv.mkDerivation rec { 4 pname = "srelay"; ··· 10 }; 11 12 patches = [ ./arm.patch ]; 13 14 installPhase = "install -D srelay $out/bin/srelay"; 15
··· 1 + { lib, stdenv, fetchurl, libxcrypt }: 2 3 stdenv.mkDerivation rec { 4 pname = "srelay"; ··· 10 }; 11 12 patches = [ ./arm.patch ]; 13 + 14 + buildInputs = [ libxcrypt ]; 15 16 installPhase = "install -D srelay $out/bin/srelay"; 17