valgrind: move perl to buildInputs
Perl is needed for `callgrind_{annotate,control}'.
This commit is contained in:
parent
602282538b
commit
d22b4859a1
1 changed files with 2 additions and 4 deletions
|
@ -8,15 +8,13 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1ccawxrni8brcvwhygy12iprkvz409hbr9xkk1bd03gnm2fplz21";
|
||||
};
|
||||
|
||||
# Perl is needed for `cg_annotate'.
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
outputs = [ "out" "dev" "man" "doc" ];
|
||||
|
||||
hardeningDisable = [ "stackprotector" ];
|
||||
|
||||
# GDB is needed to provide a sane default for `--db-command'.
|
||||
buildInputs = [ gdb ] ++ stdenv.lib.optionals (stdenv.isDarwin) [ bootstrap_cmds xnu ];
|
||||
# Perl is needed for `callgrind_{annotate,control}'.
|
||||
buildInputs = [ gdb perl ] ++ stdenv.lib.optionals (stdenv.isDarwin) [ bootstrap_cmds xnu ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
separateDebugInfo = stdenv.isLinux;
|
||||
|
|
Loading…
Reference in a new issue