2021-01-26 12:06:46 +00:00
|
|
|
{ lib, gcc9Stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto }:
|
2014-05-26 00:25:28 +01:00
|
|
|
|
2021-01-26 12:06:46 +00:00
|
|
|
gcc9Stdenv.mkDerivation rec {
|
2020-11-12 00:52:25 +00:00
|
|
|
version = "5.4.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rr";
|
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;
|
2020-11-12 00:52:25 +00:00
|
|
|
sha256 = "1sfldgkkmsdyaqa28i5agcykc63gwm3zjihd64g86i852w8al2w6";
|
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"'';
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config which ];
|
2017-01-13 01:18:37 +00:00
|
|
|
buildInputs = [
|
2020-12-31 07:48:55 +00:00
|
|
|
libpfm zlib python3Packages.python python3Packages.pexpect procps gdb capnproto
|
2017-01-13 01:18:37 +00:00
|
|
|
];
|
2019-03-13 01:18:03 +00:00
|
|
|
propagatedBuildInputs = [ gdb ]; # needs GDB to replay programs at runtime
|
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
|
|
|
# FIXME
|
|
|
|
#doCheck = true;
|
|
|
|
|
|
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
|
2014-05-26 00:25:28 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +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.
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
license = with lib.licenses; [ mit bsd2 ];
|
|
|
|
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
|
|
|
|
platforms = lib.platforms.x86;
|
2014-05-26 00:25:28 +01:00
|
|
|
};
|
2014-12-12 07:19:50 +00:00
|
|
|
}
|