3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/analysis/rr/default.nix

31 lines
951 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libpfm, zlib }:
2014-05-26 00:25:28 +01:00
stdenv.mkDerivation rec {
version = "2.0.0";
name = "rr-${version}";
2014-05-26 00:25:28 +01:00
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = version;
sha256 = "0mlxkj35zmm15dgnc7rfynnh2s2hpym01147vwc8pwv8qgab903s";
2014-05-26 00:25:28 +01:00
};
buildInputs = [ cmake libpfm zlib ];
cmakeFlags = "-DCMAKE_C_FLAGS_RELEASE:STRING= -DCMAKE_CXX_FLAGS_RELEASE:STRING=";
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 = [ stdenv.lib.maintainers.pierron ];
platforms = [ "i686-linux" ];
2014-05-26 00:25:28 +01:00
};
}