Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
perl,
|
|
libunwind,
|
|
buildPackages,
|
|
gitUpdater,
|
|
elfutils,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "strace";
|
|
version = "6.16";
|
|
|
|
src = fetchurl {
|
|
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-PXrufk8ESy9n89UainbtoYB26fsndN5UrDUdd31Ov/o=";
|
|
};
|
|
|
|
separateDebugInfo = true;
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# libunwind for -k.
|
|
# On RISC-V platforms, LLVM's libunwind implementation is unsupported by strace.
|
|
# The build will silently fall back and -k will not work on RISC-V.
|
|
buildInputs = [
|
|
libunwind
|
|
]
|
|
# -kk
|
|
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform elfutils) elfutils;
|
|
|
|
configureFlags = [
|
|
"--enable-mpers=check"
|
|
]
|
|
++ lib.optional stdenv.cc.isClang "CFLAGS=-Wno-unused-function";
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
# No nicer place to find latest release.
|
|
url = "https://github.com/strace/strace.git";
|
|
rev-prefix = "v";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://strace.io/";
|
|
description = "System call tracer for Linux";
|
|
license = with licenses; [
|
|
lgpl21Plus
|
|
gpl2Plus
|
|
]; # gpl2Plus is for the test suite
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
globin
|
|
ma27
|
|
qyliss
|
|
];
|
|
mainProgram = "strace";
|
|
};
|
|
}
|