1
1
{ stdenv , lib , fetchurl , unzip , curl , hwloc , gmp } :
2
2
3
3
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 ;
9
4
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 ;
15
17
in
16
18
17
19
stdenv . mkDerivation rec {
18
20
pname = "mprime" ;
19
- version = "29.4b7 " ;
21
+ version = "29.8b7 " ;
20
22
21
23
src = fetchurl {
22
24
url = "https://www.mersenne.org/ftp_root/gimps/p95v${ lib . replaceStrings [ "." ] [ "" ] version } .source.zip" ;
23
- sha256 = "0idaqm46m4yis7vl014scx57lpccvjbnyy79gmj8caxghyajws0m " ;
25
+ sha256 = "0x5dk2dcppfnq17n79297lmn6p56rd66cbwrh1ds4l8r4hmwsjaj " ;
24
26
} ;
25
27
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 = "." ;
27
37
28
38
nativeBuildInputs = [ unzip ] ;
39
+
29
40
buildInputs = [ curl hwloc gmp ] ;
30
41
31
- patches = [ ./makefile.patch ] ;
42
+ enableParallelBuilding = true ;
32
43
33
44
buildPhase = ''
34
45
make -C gwnum -f ${ gwnum }
35
46
make -C ${ srcDir }
36
47
'' ;
37
48
38
49
installPhase = ''
39
- install -D ${ srcDir } /mprime $out/bin/mprime
50
+ install -Dm555 -t $out/bin ${ srcDir } /mprime
40
51
'' ;
41
-
42
- meta = {
52
+
53
+ meta = with lib ; {
43
54
description = "Mersenne prime search / System stability tester" ;
44
55
longDescription = ''
45
56
MPrime is the Linux command-line interface version of Prime95, to be run
@@ -50,7 +61,7 @@ stdenv.mkDerivation rec {
50
61
homepage = "https://www.mersenne.org/" ;
51
62
# Unfree, because of a license requirement to share prize money if you find
52
63
# a suitable prime. http://www.mersenne.org/legal/#EULA
53
- license = stdenv . lib . licenses . unfree ;
64
+ license = licenses . unfree ;
54
65
# Untested on linux-32 and osx. Works in theory.
55
66
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ] ;
56
67
} ;
0 commit comments