summary refs log tree commit diff
path: root/pkgs/development/libraries/physics
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-23 01:16:50 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-23 01:16:50 -0700
commitde529b107b89f75a6853f83fbbc6948bfbf076dc (patch)
treeb3ab1f4e7d323f28cf79edb2ce967604d72231be /pkgs/development/libraries/physics
parentc287ef60cbf97b551402752085edaaedf45a1a17 (diff)
downloadnixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar.gz
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar.bz2
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar.lz
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar.xz
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.tar.zst
nixpkgs-de529b107b89f75a6853f83fbbc6948bfbf076dc.zip
qcdnum: 17-01-15 -> 18-00-00
Changelog at https://www.nikhef.nl/~h24/qcdnum/QcdnumDownload.html says:

  Same as qcdnum-17-01/15 with a few minor fixes.

One of these fixes is to replace real*16 with double precision for a few
variables to be standards compliant. This resolves following error:

  Error: Old-style type declaration REAL*16 not supported at (1)
Diffstat (limited to 'pkgs/development/libraries/physics')
-rw-r--r--pkgs/development/libraries/physics/qcdnum/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/physics/qcdnum/default.nix b/pkgs/development/libraries/physics/qcdnum/default.nix
index f09a1a0e19b..e25b98498dd 100644
--- a/pkgs/development/libraries/physics/qcdnum/default.nix
+++ b/pkgs/development/libraries/physics/qcdnum/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "QCDNUM";
-  version = "17-01-15";
+  version = "18-00-00";
 
   src = fetchurl {
     url = "http://www.nikhef.nl/user/h24/qcdnum-files/download/qcdnum${builtins.replaceStrings ["-"] [""] version}.tar.gz";
-    sha256 = "0ibk1sppss45qh0g8i2c99alkx82xdbss3p55f5367bxjx4iqvvg";
+    hash = "sha256-4Qj5JreEA1LkCAunGRTTQD7YEYNk+HcQ4iH97DIO4gA=";
   };
 
   nativeBuildInputs = [ gfortran ];