Skip to content

Commit b278ccc

Browse files
committedJul 27, 2020
mprime: 29.4b7 -> 29.8b7
1 parent 28fce08 commit b278ccc

File tree

2 files changed

+29
-59
lines changed

2 files changed

+29
-59
lines changed
 

‎pkgs/tools/misc/mprime/default.nix

+29-18
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,56 @@
11
{ stdenv, lib, fetchurl, unzip, curl, hwloc, gmp }:
22

33
let
4-
srcDir =
5-
if stdenv.hostPlatform.system == "x86_64-linux" then "linux64"
6-
else if stdenv.hostPlatform.system == "i686-linux" then "linux"
7-
else if stdenv.hostPlatform.system == "x86_64-darwin" then "macosx64"
8-
else throwSystem;
94
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
10-
gwnum =
11-
if stdenv.hostPlatform.system == "x86_64-linux" then "make64"
12-
else if stdenv.hostPlatform.system == "i686-linux" then "makefile"
13-
else if stdenv.hostPlatform.system == "x86_64-darwin" then "makemac"
14-
else throwSystem;
5+
6+
srcDir = {
7+
x86_64-linux = "linux64";
8+
i686-linux = "linux";
9+
x86_64-darwin = "macosx64";
10+
}."${stdenv.hostPlatform.system}" or throwSystem;
11+
12+
gwnum = {
13+
x86_64-linux = "make64";
14+
i686-linux = "makefile";
15+
x86_64-darwin = "makemac";
16+
}."${stdenv.hostPlatform.system}" or throwSystem;
1517
in
1618

1719
stdenv.mkDerivation rec {
1820
pname = "mprime";
19-
version = "29.4b7";
21+
version = "29.8b7";
2022

2123
src = fetchurl {
2224
url = "https://www.mersenne.org/ftp_root/gimps/p95v${lib.replaceStrings ["."] [""] version}.source.zip";
23-
sha256 = "0idaqm46m4yis7vl014scx57lpccvjbnyy79gmj8caxghyajws0m";
25+
sha256 = "0x5dk2dcppfnq17n79297lmn6p56rd66cbwrh1ds4l8r4hmwsjaj";
2426
};
2527

26-
unpackCmd = "unzip -d src -q $curSrc || true";
28+
postPatch = ''
29+
sed -i ${srcDir}/makefile \
30+
-e 's/^LFLAGS =.*//'
31+
substituteInPlace ${srcDir}/makefile \
32+
--replace '-Wl,-Bstatic' "" \
33+
--replace '-Wl,-Bdynamic' ""
34+
'';
35+
36+
sourceRoot = ".";
2737

2838
nativeBuildInputs = [ unzip ];
39+
2940
buildInputs = [ curl hwloc gmp ];
3041

31-
patches = [ ./makefile.patch ];
42+
enableParallelBuilding = true;
3243

3344
buildPhase = ''
3445
make -C gwnum -f ${gwnum}
3546
make -C ${srcDir}
3647
'';
3748

3849
installPhase = ''
39-
install -D ${srcDir}/mprime $out/bin/mprime
50+
install -Dm555 -t $out/bin ${srcDir}/mprime
4051
'';
41-
42-
meta = {
52+
53+
meta = with lib; {
4354
description = "Mersenne prime search / System stability tester";
4455
longDescription = ''
4556
MPrime is the Linux command-line interface version of Prime95, to be run
@@ -50,7 +61,7 @@ stdenv.mkDerivation rec {
5061
homepage = "https://www.mersenne.org/";
5162
# Unfree, because of a license requirement to share prize money if you find
5263
# a suitable prime. http://www.mersenne.org/legal/#EULA
53-
license = stdenv.lib.licenses.unfree;
64+
license = licenses.unfree;
5465
# Untested on linux-32 and osx. Works in theory.
5566
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
5667
};

‎pkgs/tools/misc/mprime/makefile.patch

-41
This file was deleted.

0 commit comments

Comments
 (0)