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

57 lines
1.6 KiB
Nix
Raw Normal View History

2017-09-07 17:05:09 +00:00
{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkgconfig, python2Packages, which, procps, gdb, capnproto }:
2014-05-25 23:25:28 +00:00
stdenv.mkDerivation rec {
2017-09-07 17:05:09 +00:00
version = "5.0.0";
name = "rr-${version}";
2014-05-25 23:25:28 +00:00
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = version;
2017-09-07 17:05:09 +00:00
sha256 = "1cc1dbq129qlmrysk7cmaihcd9c93csi79dv3kqsnnprbz480z9i";
2014-05-25 23:25:28 +00:00
};
postPatch = ''
substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
2016-06-13 08:15:48 +00:00
sed '7i#include <math.h>' -i src/Scheduler.cc
2015-10-28 14:20:32 +00:00
patchShebangs .
'';
nativeBuildInputs = [ pkgconfig ];
2017-01-13 01:18:37 +00:00
buildInputs = [
cmake libpfm zlib python2Packages.python python2Packages.pexpect which procps gdb capnproto
2017-01-13 01:18:37 +00:00
];
cmakeFlags = [
"-DCMAKE_C_FLAGS_RELEASE:STRING="
"-DCMAKE_CXX_FLAGS_RELEASE:STRING="
"-Ddisable32bit=ON"
];
2014-05-25 23:25:28 +00: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-25 23:25:28 +00:00
meta = {
homepage = http://rr-project.org/;
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 = "custom";
maintainers = with stdenv.lib.maintainers; [ pierron thoughtpolice ];
platforms = stdenv.lib.platforms.linux;
2014-05-25 23:25:28 +00:00
};
}