gatling: fix undefined reference to 'crypt'

ff30c899d8b made libcrypt support optional (and off-by-default) in
glibc, which requires all packages still using it to depend on
libxcrypt.

See also https://github.com/NixOS/nixpkgs/pull/181764

+2 -3
+2 -3
pkgs/servers/http/gatling/default.nix
··· 1 - { lib, stdenv, fetchurl, libowfat, libcap, zlib, openssl }: 1 + { lib, stdenv, fetchurl, libowfat, libcap, zlib, openssl, libxcrypt }: 2 2 3 3 let 4 4 version = "0.16"; ··· 12 12 sha256 = "0nrnws5qrl4frqcsfa9z973vv5mifgr9z170qbvg3mq1wa7475jz"; 13 13 }; 14 14 15 - buildInputs = [ libowfat libcap zlib openssl.dev ]; 15 + buildInputs = [ libowfat libcap zlib openssl libxcrypt ]; 16 16 17 17 configurePhase = '' 18 18 substituteInPlace Makefile --replace "/usr/local" "$out" ··· 28 28 homepage = "http://www.fefe.de/gatling/"; 29 29 license = lib.licenses.gpl2; 30 30 platforms = platforms.linux; 31 - broken = true; # 2022-11-16 32 31 }; 33 32 }