about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-05-16 15:06:32 +0200
committerTimo Kaufmann <timokau@zoho.com>2020-05-16 15:07:57 +0200
commitd65850e975eaef4766fda83e36c06ea25bf33578 (patch)
treea95971af87abbd8b0946b41f86ea9e5d4ed34f7a /pkgs
parent51de3203532bd5c9d34a2575397f6c6101190182 (diff)
downloadnixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar.gz
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar.bz2
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar.lz
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar.xz
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.tar.zst
nixlib-d65850e975eaef4766fda83e36c06ea25bf33578.zip
palp: 2.1 -> 2.11
According to the homepage[1]:

> Small change in Mori.h for compatibility with gcc_10 (thanks to J.
  Puydt) [May 15, 2020].

Disabling the strictoverflow seems to be no longer necessary (I'm
relying on the check phase here).

[1] http://hep.itp.tuwien.ac.at/~kreuzer/CY/CYpalp.html
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/science/math/palp/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/science/math/palp/default.nix b/pkgs/applications/science/math/palp/default.nix
index 409324d4abbe..42259a2c689b 100644
--- a/pkgs/applications/science/math/palp/default.nix
+++ b/pkgs/applications/science/math/palp/default.nix
@@ -9,16 +9,15 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "palp";
-  version = "2.1";
+  version = "2.11";
 
   src = fetchurl {
     url = "http://hep.itp.tuwien.ac.at/~kreuzer/CY/palp/palp-${version}.tar.gz";
-    sha256 = "1s7s2lc5f0ig1yy7ygsh3sddm3sbq4mxwybqsj8lp9wjdxs7qfrs";
+    sha256 = "09l4ysrdkqs91igg1faah75ay6ii684634ggvcxbkjsck65378l4";
   };
 
   hardeningDisable = [
     "format"
-    "strictoverflow" # causes runtime failure (tested in checkPhase)
   ];
 
   patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''