about summary refs log tree commit diff
path: root/pkgs/development/compilers/xa
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2021-03-19 14:02:07 +0100
committerOPNA2608 <christoph.neidahl@gmail.com>2021-04-14 07:45:10 +0200
commitf6519a5191e56ec7ff16e1218493503e735074e1 (patch)
tree27c24c42b5e804b86564331ce3c03992a326ece1 /pkgs/development/compilers/xa
parent2cedaac1cb9f30827ddbd1718221537269eaf51f (diff)
dxa: add fallback download url
Diffstat (limited to 'pkgs/development/compilers/xa')
-rw-r--r--pkgs/development/compilers/xa/dxa.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/compilers/xa/dxa.nix b/pkgs/development/compilers/xa/dxa.nix
index 03f2d054cc807..56661c1dbcc90 100644
--- a/pkgs/development/compilers/xa/dxa.nix
+++ b/pkgs/development/compilers/xa/dxa.nix
@@ -9,7 +9,10 @@ stdenv.mkDerivation rec {
   version = "0.1.4";
 
   src = fetchurl {
-    url = "https://www.floodgap.com/retrotech/xa/dists/${pname}-${version}.tar.gz";
+    urls = [
+      "https://www.floodgap.com/retrotech/xa/dists/${pname}-${version}.tar.gz"
+      "https://www.floodgap.com/retrotech/xa/dists/unsupported/${pname}-${version}.tar.gz"
+    ];
     hash = "sha256-C0rgwK51Ij9EZCm9GeiVnWIkEkse0d60ok8G9hm2a5U=";
   };