Merge pull request #75298 from dywedir/strace

strace: 5.3 -> 5.4
This commit is contained in:
Maximilian Bosch 2019-12-14 17:06:38 +01:00 committed by GitHub
commit a081531a80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "strace";
version = "5.3";
version = "5.4";
src = fetchurl {
url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz";
sha256 = "0ix06z4vnc49mv76f22kixz8dsh7daqv9mpgwcgl0mlnfjc124vc";
sha256 = "0hd7sb7l99y9rcj8jjc1b6m3ryds17krsymdg3dvd40jsla0bl7p";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
doCheck = false;
meta = with stdenv.lib; {
homepage = https://strace.io/;
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;