nixpkgs/pkgs/development/tools/analysis/rr/default.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, gcc9Stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto }:
2014-05-26 00:25:28 +01:00
gcc9Stdenv.mkDerivation rec {
2020-11-12 00:52:25 +00:00
version = "5.4.0";
pname = "rr";
2014-05-26 00:25:28 +01:00
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = version;
2020-11-12 00:52:25 +00:00
sha256 = "1sfldgkkmsdyaqa28i5agcykc63gwm3zjihd64g86i852w8al2w6";
2014-05-26 00:25:28 +01:00
};
postPatch = ''
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 .
'';
# 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"'';
nativeBuildInputs = [ cmake pkg-config which ];
2017-01-13 01:18:37 +00:00
buildInputs = [
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
cmakeFlags = [
"-DCMAKE_C_FLAGS_RELEASE:STRING="
"-DCMAKE_CXX_FLAGS_RELEASE:STRING="
"-Ddisable32bit=ON"
];
2014-05-26 00:25:28 +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 = {
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.
'';
license = with lib.licenses; [ mit bsd2 ];
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
platforms = lib.platforms.x86;
2014-05-26 00:25:28 +01:00
};
}