From de529b107b89f75a6853f83fbbc6948bfbf076dc Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Fri, 23 Sep 2022 01:16:50 -0700 Subject: [PATCH] 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) --- pkgs/development/libraries/physics/qcdnum/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/physics/qcdnum/default.nix b/pkgs/development/libraries/physics/qcdnum/default.nix index f09a1a0e19bd..e25b98498ddb 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 ];