Merge pull request #182316 from sikmir/mprime

mprime: 29.8b7 → 30.8b15

authored by Mario Rodas and committed by GitHub a1844844 9245adc1

+4 -4
+4 -4
pkgs/tools/misc/mprime/default.nix
··· 1 - { stdenv, lib, fetchurl, unzip, curl, hwloc, gmp }: 2 3 let 4 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; ··· 18 19 stdenv.mkDerivation rec { 20 pname = "mprime"; 21 - version = "29.8b7"; 22 23 src = fetchurl { 24 url = "https://www.mersenne.org/ftp_root/gimps/p95v${lib.replaceStrings ["."] [""] version}.source.zip"; 25 - sha256 = "0x5dk2dcppfnq17n79297lmn6p56rd66cbwrh1ds4l8r4hmwsjaj"; 26 }; 27 28 postPatch = '' ··· 37 38 nativeBuildInputs = [ unzip ]; 39 40 - buildInputs = [ curl hwloc gmp ]; 41 42 enableParallelBuilding = true; 43
··· 1 + { stdenv, lib, fetchurl, unzip, boost, curl, hwloc, gmp }: 2 3 let 4 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; ··· 18 19 stdenv.mkDerivation rec { 20 pname = "mprime"; 21 + version = "30.8b15"; 22 23 src = fetchurl { 24 url = "https://www.mersenne.org/ftp_root/gimps/p95v${lib.replaceStrings ["."] [""] version}.source.zip"; 25 + hash = "sha256-CNYorZStHV0aESGX9LfLZ4oD5PFR2UOFLN1MiLaKw58="; 26 }; 27 28 postPatch = '' ··· 37 38 nativeBuildInputs = [ unzip ]; 39 40 + buildInputs = [ boost curl hwloc gmp ]; 41 42 enableParallelBuilding = true; 43