python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / analysis / rr / default.nix
blobe9437d718cf7a19397cf0a22d5f218eef22a52a0
1 { lib, stdenv, fetchFromGitHub, fetchpatch
2 , cmake, libpfm, zlib, pkg-config, python3Packages, which, procps, gdb, capnproto
3 }:
5 stdenv.mkDerivation rec {
6   version = "5.6.0";
7   pname = "rr";
9   src = fetchFromGitHub {
10     owner = "mozilla";
11     repo = "rr";
12     rev = version;
13     sha256 = "H39HPkAQGubXVQV3jCpH4Pz+7Q9n03PrS70utk7Tt2k=";
14   };
16   patches = [
17     (fetchpatch {
18       name = "fix-flexible-array-member.patch";
19       url = "https://github.com/rr-debugger/rr/commit/2979c60ef8bbf7c940afd90172ddc5d8863f766e.diff";
20       sha256 = "cmdCJetQr3ELPOyWl37h1fGfG/xvaiJpywxIAnqb5YY=";
21     })
22   ];
24   postPatch = ''
25     substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
26     sed '7i#include <math.h>' -i src/Scheduler.cc
27     patchShebangs .
28   '';
30   # With LTO enabled, linking fails with the following message:
31   #
32   # src/AddressSpace.cc:1666: undefined reference to `rr_syscall_addr'
33   # ld.bfd: bin/rr: hidden symbol `rr_syscall_addr' isn't defined
34   # ld.bfd: final link failed: bad value
35   # collect2: error: ld returned 1 exit status
36   #
37   # See also https://github.com/NixOS/nixpkgs/pull/110846
38   preConfigure = ''substituteInPlace CMakeLists.txt --replace "-flto" ""'';
40   nativeBuildInputs = [ cmake pkg-config which ];
41   buildInputs = [
42     libpfm zlib python3Packages.python python3Packages.pexpect procps gdb capnproto
43   ];
44   propagatedBuildInputs = [ gdb ]; # needs GDB to replay programs at runtime
45   cmakeFlags = [
46     "-DCMAKE_C_FLAGS_RELEASE:STRING="
47     "-DCMAKE_CXX_FLAGS_RELEASE:STRING="
48     "-Ddisable32bit=ON"
49   ];
51   # we turn on additional warnings due to hardening
52   NIX_CFLAGS_COMPILE = "-Wno-error";
54   hardeningDisable = [ "fortify" ];
56   # FIXME
57   #doCheck = true;
59   preCheck = "export HOME=$TMPDIR";
61   meta = {
62     homepage = "https://rr-project.org/";
63     description = "Records nondeterministic executions and debugs them deterministically";
64     longDescription = ''
65       rr aspires to be your primary debugging tool, replacing -- well,
66       enhancing -- gdb. You record a failure once, then debug the
67       recording, deterministically, as many times as you want. Every
68       time the same execution is replayed.
69     '';
71     license = with lib.licenses; [ mit bsd2 ];
72     maintainers = with lib.maintainers; [ pierron thoughtpolice ];
73     platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
74   };