strace: 5.9 -> 5.10

https://github.com/strace/strace/releases/tag/v5.10
This commit is contained in:
Maximilian Bosch 2020-12-14 12:04:54 +01:00
parent c75ea58a2c
commit b7a29b2f71
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "strace";
version = "5.9";
version = "5.10";
src = fetchurl {
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
sha256 = "1nb6bm6ll6cxd6a2fc67c0qn39gbh6rkqrpv83lw6ijm8sw3wirr";
sha256 = "sha256-/jmC6kzZrrO0ujX2J58LV3o3F10ygr4kuaVTe1a48Bw=";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
@ -23,6 +23,6 @@ stdenv.mkDerivation rec {
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 ];
maintainers = with maintainers; [ globin ma27 ];
};
}