strace: 5.8 -> 5.9

This commit is contained in:
Vladyslav M 2020-10-03 22:57:28 +03:00
parent c1127c61fd
commit 3f01bf51e7
No known key found for this signature in database
GPG key ID: 3B1AD98E3D65BD4D

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "strace";
version = "5.8";
version = "5.9";
src = fetchurl {
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
sha256 = "1abs3svkg9985f4jrxx34sj1dcpsf95vv1a0g01c777zgygncjnz";
sha256 = "1nb6bm6ll6cxd6a2fc67c0qn39gbh6rkqrpv83lw6ijm8sw3wirr";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
@ -18,10 +18,6 @@ stdenv.mkDerivation rec {
configureFlags = stdenv.lib.optional (!stdenv.hostPlatform.isx86) "--enable-mpers=check";
# fails 1 out of 523 tests with
# "strace-k.test: failed test: ../../strace -e getpid -k ../stack-fcall output mismatch"
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://strace.io/";
description = "A system call tracer for Linux";