fix valgrind

This commit is contained in:
Charlotte 🦝 Delenk 2023-06-26 07:26:56 +01:00
parent 9b6af9f819
commit 96cb9fea62
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -5,8 +5,6 @@
perl,
gdb,
cctools,
xnu,
bootstrap_cmds,
autoreconfHook,
}: let
source = builtins.fromJSON (builtins.readFile ./source.json);
@ -27,7 +25,7 @@ in
# GDB is needed to provide a sane default for `--db-command'.
# Perl is needed for `callgrind_{annotate,control}'.
buildInputs = [gdb perl] ++ lib.optionals (stdenv.isDarwin) [bootstrap_cmds xnu];
buildInputs = [gdb perl];
# Perl is also a native build input.
nativeBuildInputs = [autoreconfHook perl];