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

54 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkgconfig, python2Packages, which, procps, gdb }:
2014-05-26 00:25:28 +01:00
stdenv.mkDerivation rec {
2016-07-16 22:39:24 +01:00
version = "4.3.0";
name = "rr-${version}";
2014-05-26 00:25:28 +01:00
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = version;
2016-07-16 22:39:24 +01:00
sha256 = "0hl59g6252zi1j9zng5x5gqlmdwa4gz7mbvz8h3b7z4gnn2q5l6c";
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 .
'';
buildInputs = [ cmake libpfm zlib python2Packages.python pkgconfig python2Packages.pexpect which procps gdb ];
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
enableParallelBuilding = true;
# FIXME
#doCheck = true;
preCheck = "export HOME=$TMPDIR";
2014-05-26 00:25:28 +01: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-26 00:25:28 +01:00
};
}