6aeee3790b
Signed-off-by: Austin Seipp <aseipp@pobox.com>
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkgconfig, python2Packages, which, procps, gdb, capnproto }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.1.0";
|
|
name = "rr-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla";
|
|
repo = "rr";
|
|
rev = version;
|
|
sha256 = "16v08irycb295jjw5yrcjdagvkgcgg4hl5qz215hrw1ff4g7sazy";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
|
|
sed '7i#include <math.h>' -i src/Scheduler.cc
|
|
patchShebangs .
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
cmake libpfm zlib python2Packages.python python2Packages.pexpect which procps gdb capnproto
|
|
];
|
|
cmakeFlags = [
|
|
"-DCMAKE_C_FLAGS_RELEASE:STRING="
|
|
"-DCMAKE_CXX_FLAGS_RELEASE:STRING="
|
|
"-Ddisable32bit=ON"
|
|
];
|
|
|
|
# we turn on additional warnings due to hardening
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# FIXME
|
|
#doCheck = true;
|
|
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
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 = ["x86_64-linux"];
|
|
};
|
|
}
|