about summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorDamien Diederen <dd@crosstwine.com>2023-09-28 20:54:54 +0200
committerGitHub <noreply@github.com>2023-09-28 20:54:54 +0200
commitb5213d5b0f6bda0fe098ff98890599ff63dfdd5f (patch)
tree9886d9a4c270fec1912e3b56678b9ba4141e675a /pkgs/tools/backup
parentd90e8fdfb7ea4885907c1570877197160cff2d44 (diff)
downloadnixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar.gz
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar.bz2
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar.lz
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar.xz
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.tar.zst
nixlib-b5213d5b0f6bda0fe098ff98890599ff63dfdd5f.zip
treewide: fix invalid gentoo/distfiles urls (#257808)
* nettools: fix url; avoid gentoo/distfiles which now uses hashed directories

* pax-utils: fix url; avoid gentoo/distfiles which now uses hashed directories

The project doesn't seem to publish the exact tarball which was relied
on, but we can fetch the sources from the original repository.  (This
implies some rebuilds.)

* mtx: fix url; avoid gentoo/distfiles which now uses hashed directories

* vlan: fix url; avoid gentoo/distfiles which now uses hashed directories
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/mtx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/backup/mtx/default.nix b/pkgs/tools/backup/mtx/default.nix
index b8476954949e..683bee11067d 100644
--- a/pkgs/tools/backup/mtx/default.nix
+++ b/pkgs/tools/backup/mtx/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
   version = "1.3.12";
 
   src = fetchurl {
-    url = "mirror://gentoo/distfiles/mtx-${version}.tar.gz";
+    url = "mirror://sourceforge/${pname}/${pname}-stable/${version}/${pname}-${version}.tar.gz";
     sha256 = "0261c5e90b98b6138cd23dadecbc7bc6e2830235145ed2740290e1f35672d843";
   };