mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, perl, libunwind, buildPackages, gitUpdater }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "strace";
|
|
version = "6.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-ktcgpmaFXp8cahFRL9bplnSoK7/hRCVXgV8s6OEpMzg=";
|
|
};
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
# 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 ]; # support -k
|
|
|
|
configureFlags = [ "--enable-mpers=check" ];
|
|
|
|
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 = "A 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 ];
|
|
};
|
|
}
|