mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
valgrind: 3.14.0 -> 3.15.0
https://sourceforge.net/p/valgrind/mailman/message/36642596/
This commit is contained in:
parent
6968c4f305
commit
959b199991
@ -1,18 +1,15 @@
|
||||
{ stdenv, fetchurl, perl, gdb, llvm, cctools, xnu, bootstrap_cmds, autoreconfHook }:
|
||||
{ stdenv, fetchurl, perl, gdb, llvm, cctools, xnu, bootstrap_cmds }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "valgrind-3.14.0";
|
||||
name = "valgrind-3.15.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://sourceware.org/pub/valgrind/${name}.tar.bz2";
|
||||
sha256 = "19ds42jwd89zrsjb94g7gizkkzipn8xik3xykrpcqxylxyzi2z03";
|
||||
sha256 = "1ccawxrni8brcvwhygy12iprkvz409hbr9xkk1bd03gnm2fplz21";
|
||||
};
|
||||
|
||||
# autoreconfHook is needed to pick up patching of Makefile.am
|
||||
# Remove when the patch no longer applies.
|
||||
patches = [ ./coregrind-makefile-race.patch ];
|
||||
# Perl is needed for `cg_annotate'.
|
||||
nativeBuildInputs = [ autoreconfHook perl ];
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
outputs = [ "out" "dev" "man" "doc" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user