depot/third_party/nixpkgs/pkgs/development/tools/analysis/rr/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

112 lines
2.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
bash,
capnproto,
cmake,
gdb,
libpfm,
makeWrapper,
pkg-config,
procps,
python3,
which,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
version = "5.8.0";
pname = "rr";
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = finalAttrs.version;
hash = "sha256-FudAAkWIe6gv4NYFoe9E0hlgTM70lymBE5Fw/vbehps=";
};
postPatch = ''
substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE'
patchShebangs src
'';
# With LTO enabled, linking fails with the following message:
#
# src/AddressSpace.cc:1666: undefined reference to `rr_syscall_addr'
# ld.bfd: bin/rr: hidden symbol `rr_syscall_addr' isn't defined
# ld.bfd: final link failed: bad value
# collect2: error: ld returned 1 exit status
#
# See also https://github.com/NixOS/nixpkgs/pull/110846
preConfigure = ''
substituteInPlace CMakeLists.txt --replace "-flto" ""
'';
strictDeps = true;
nativeBuildInputs = [
capnproto
cmake
makeWrapper
pkg-config
python3.pythonOnBuildForHost
which
];
buildInputs = [
bash
capnproto
gdb
libpfm
procps
python3
zlib
];
cmakeFlags = [
(lib.cmakeBool "disable32bit" true)
(lib.cmakeBool "BUILD_TESTS" finalAttrs.doCheck)
];
# we turn on additional warnings due to hardening
env.NIX_CFLAGS_COMPILE = "-Wno-error";
hardeningDisable = [ "fortify" ];
# FIXME
doCheck = false;
preCheck = "export HOME=$TMPDIR";
# needs GDB to replay programs at runtime
preFixup = ''
wrapProgram "$out/bin/rr" \
--prefix PATH ":" "${lib.makeBinPath [ gdb ]}";
'';
meta = {
homepage = "https://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 = with lib.licenses; [
mit
bsd2
];
maintainers = with lib.maintainers; [
pierron
thoughtpolice
];
platforms = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
];
};
})