strace: fix source tarball

The previous version was not the actual release, and was not supposed to
be published at all. This one is the signed release. Additionally,
upstream plans no more releases on sourceforge so the URL has been
changed to refer to strace.io instead.

+3 -3
+3 -3
pkgs/development/tools/misc/strace/default.nix
··· 5 5 version = "4.21"; 6 6 7 7 src = fetchurl { 8 - url = "mirror://sourceforge/strace/${name}.tar.xz"; 9 - sha256 = "1dvrwi6v9j6b9j6852zzlc61hxgiciadi1xsl89wzbzqlkxnahbd"; 8 + url = "https://strace.io/files/${version}/${name}.tar.xz"; 9 + sha256 = "0dsw6xcfrmygidp1dj2ch8cl8icrar7789snkb2r8gh78kdqhxjw"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ perl ]; ··· 16 16 configureFlags = stdenv.lib.optional stdenv.hostPlatform.isAarch64 "--enable-mpers=check"; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = http://strace.sourceforge.net/; 19 + homepage = http://strace.io/; 20 20 description = "A system call tracer for Linux"; 21 21 license = licenses.bsd3; 22 22 platforms = platforms.linux;