about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-03-25 10:08:43 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2018-03-25 10:08:43 +0200
commit2379cfc4ed98a88ce2c2b394b6768c0429f05da9 (patch)
treef15c0e9f8d6fbb088e7db0c25236c60fc24f0738
parent275cd497314464226343fa31cee271fb9d4c8025 (diff)
downloadnixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar.gz
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar.bz2
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar.lz
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar.xz
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.tar.zst
nixlib-2379cfc4ed98a88ce2c2b394b6768c0429f05da9.zip
geogebra: add archive.org link for 5-0-444-0
The `geogebra` package is subject to break as upstream removes versioned
packages from their download server when five new releases are comming.

This is why I had to fix almost monthly the package by bumping the
version (these can be found by running `git log --online | grep
geogebra:`). As the package didn't cause any issues for several months
now I guess that using `archive.org` seems to be a suitable solution for
now.

/cc @sternenseemann @matthewbauer
-rw-r--r--pkgs/applications/science/math/geogebra/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/geogebra/default.nix b/pkgs/applications/science/math/geogebra/default.nix
index b486d01a4099..9e2c55d567cb 100644
--- a/pkgs/applications/science/math/geogebra/default.nix
+++ b/pkgs/applications/science/math/geogebra/default.nix
@@ -7,7 +7,10 @@ stdenv.mkDerivation rec {
   preferLocalBuild = true;
 
   src = fetchurl {
-    urls = "https://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2";
+    urls = [
+      "https://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"
+      "http://web.archive.org/web/20180325075100/http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${version}.tar.bz2"
+    ];
     sha256 = "1x2h40m62zbhmy42hln5gjj3fwk4b6803v3k9agpv5c6j468sq0p";
   };