2017-09-07 18:05:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkgconfig, python2Packages, which, procps, gdb, capnproto }:
|
2014-05-26 00:25:28 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-30 09:39:49 +01:00
|
|
|
version = "5.2.0";
|
2014-12-04 23:49:13 +00:00
|
|
|
name = "rr-${version}";
|
2014-05-26 00:25:28 +01:00
|
|
|
|
2014-10-22 14:09:16 +01:00
|
|
|
src = fetchFromGitHub {
|
2014-12-04 23:49:13 +00:00
|
|
|
owner = "mozilla";
|
|
|
|
repo = "rr";
|
|
|
|
rev = version;
|
2018-05-30 09:39:49 +01:00
|
|
|
sha256 = "19jsnm8n2smalx2z60x9d8f6g4kdm7zghwyjfvwcxnslk1vn9dkc";
|
2014-05-26 00:25:28 +01:00
|
|
|
};
|
|
|
|
|
2016-06-13 09:11:45 +01:00
|
|
|
postPatch = ''
|
2014-12-12 07:19:50 +00:00
|
|
|
substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
|
2016-06-13 09:15:48 +01:00
|
|
|
sed '7i#include <math.h>' -i src/Scheduler.cc
|
2015-10-28 14:20:32 +00:00
|
|
|
patchShebangs .
|
2014-12-12 07:19:50 +00:00
|
|
|
'';
|
|
|
|
|
2018-10-21 15:18:36 +01:00
|
|
|
# TODO: remove this preConfigure hook after 5.2.0 since it is fixed upstream
|
|
|
|
# see https://github.com/mozilla/rr/issues/2269
|
|
|
|
preConfigure = ''substituteInPlace CMakeLists.txt --replace "std=c++11" "std=c++14"'';
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-01-13 01:18:37 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
cmake libpfm zlib python2Packages.python python2Packages.pexpect which procps gdb capnproto
|
2017-01-13 01:18:37 +00:00
|
|
|
];
|
2016-05-18 11:40:35 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_C_FLAGS_RELEASE:STRING="
|
|
|
|
"-DCMAKE_CXX_FLAGS_RELEASE:STRING="
|
|
|
|
"-Ddisable32bit=ON"
|
|
|
|
];
|
2014-05-26 00:25:28 +01:00
|
|
|
|
2016-04-03 13:37:35 +01:00
|
|
|
# we turn on additional warnings due to hardening
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
2015-10-28 14:20:32 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
# FIXME
|
|
|
|
#doCheck = true;
|
|
|
|
|
|
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
|
2014-05-26 00:25:28 +01:00
|
|
|
meta = {
|
2018-06-27 21:12:57 +01:00
|
|
|
homepage = https://rr-project.org/;
|
2014-05-26 00:25:28 +01:00
|
|
|
description = "Records nondeterministic executions and debugs them deterministically";
|
|
|
|
longDescription = ''
|
|
|
|
rr aspires to be your primary debugging tool, replacing -- well,
|
|
|
|
enhancing -- gdb. You record a failure once, then debug the
|
|
|
|
recording, deterministically, as many times as you want. Every
|
|
|
|
time the same execution is replayed.
|
|
|
|
'';
|
|
|
|
|
2018-10-21 15:18:36 +01:00
|
|
|
license = with stdenv.lib.licenses; [ mit bsd2 ];
|
2014-12-12 07:19:50 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pierron thoughtpolice ];
|
2018-07-30 13:27:25 +01:00
|
|
|
platforms = stdenv.lib.platforms.x86;
|
2014-05-26 00:25:28 +01:00
|
|
|
};
|
2014-12-12 07:19:50 +00:00
|
|
|
}
|