summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2018-02-26 22:50:15 +0000
committerLinus Heckemann <git@sphalerite.org>2018-02-26 23:58:14 +0000
commita886584b8cfbaeab511f564b2d481c4dfaafccff (patch)
tree2df0f43ab3807405de911158b3b93d54d97a4919 /pkgs
parentea299bdca8a88381a9bd6aba232481b0910dff7f (diff)
downloadnixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar.gz
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar.bz2
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar.lz
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar.xz
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.tar.zst
nixlib-a886584b8cfbaeab511f564b2d481c4dfaafccff.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/strace/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix
index e5f298a1cabc..80d1a75e801d 100644
--- a/pkgs/development/tools/misc/strace/default.nix
+++ b/pkgs/development/tools/misc/strace/default.nix
@@ -5,8 +5,8 @@ stdenv.mkDerivation rec {
   version = "4.21";
 
   src = fetchurl {
-    url = "mirror://sourceforge/strace/${name}.tar.xz";
-    sha256 = "1dvrwi6v9j6b9j6852zzlc61hxgiciadi1xsl89wzbzqlkxnahbd";
+    url = "https://strace.io/files/${version}/${name}.tar.xz";
+    sha256 = "0dsw6xcfrmygidp1dj2ch8cl8icrar7789snkb2r8gh78kdqhxjw";
   };
 
   nativeBuildInputs = [ perl ];
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   configureFlags = stdenv.lib.optional stdenv.hostPlatform.isAarch64 "--enable-mpers=check";
 
   meta = with stdenv.lib; {
-    homepage = http://strace.sourceforge.net/;
+    homepage = http://strace.io/;
     description = "A system call tracer for Linux";
     license = licenses.bsd3;
     platforms = platforms.linux;