about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-09-04 23:09:19 +0200
committerGitHub <noreply@github.com>2022-09-04 23:09:19 +0200
commitbb738c52024e150270d708489912b1ad2adb41c8 (patch)
tree839786f934e5f9d236538d35a1a4ce80e8daa558 /pkgs/applications/science
parente86a16dbc6410a7382cdf3d03aba204fa0edde74 (diff)
parent22bccbcd9780c39ab08f4791e1de401b306a3923 (diff)
Merge pull request #179257 from mrbitt/master
Update perseus
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/perseus/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/math/perseus/default.nix b/pkgs/applications/science/math/perseus/default.nix
index 4545203dacca0..d9921e68edb11 100644
--- a/pkgs/applications/science/math/perseus/default.nix
+++ b/pkgs/applications/science/math/perseus/default.nix
@@ -8,12 +8,12 @@ stdenv.mkDerivation {
   hardeningDisable = [ "stackprotector" ];
 
   src = fetchurl {
-    url = "http://www.sas.upenn.edu/~vnanda/source/perseus_4_beta.zip";
-    sha256 = "09brijnqabhgfjlj5wny0bqm5dwqcfkp1x5wif6yzdmqh080jybj";
+    url = "http://people.maths.ox.ac.uk/nanda/source/perseus_4_beta.zip";
+    sha256 = "sha256-cnkJEIC4tu+Ni7z0cKdjmLdS8QLe8iKpdA8uha2MeSU=";
   };
 
   sourceRoot = ".";
-
+  NIX_CFLAGS_COMPILE = [ "-std=c++14" ];
   buildPhase = ''
     g++ Pers.cpp -O3 -fpermissive -o perseus
   '';
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
       around datasets arising from point samples, images, distance
       matrices and so forth.
     '';
-    homepage = "http://www.sas.upenn.edu/~vnanda/perseus/index.html";
+    homepage = "http://people.maths.ox.ac.uk/nanda/perseus/index.html";
     license = lib.licenses.gpl3;
     maintainers = with lib.maintainers; [ erikryb ];
     platforms = lib.platforms.linux;