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

58 lines
1.9 KiB
Nix
Raw Normal View History

2018-02-15 10:39:57 +01:00
{ stdenv, lib, fetchurl, unzip, curl, hwloc, gmp }:
2016-02-16 17:37:45 +01:00
let
srcDir =
if stdenv.hostPlatform.system == "x86_64-linux" then "linux64"
else if stdenv.hostPlatform.system == "i686-linux" then "linux"
else if stdenv.hostPlatform.system == "x86_64-darwin" then "macosx64"
else throwSystem;
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
2016-02-16 17:37:45 +01:00
gwnum =
if stdenv.hostPlatform.system == "x86_64-linux" then "make64"
else if stdenv.hostPlatform.system == "i686-linux" then "makefile"
else if stdenv.hostPlatform.system == "x86_64-darwin" then "makemac"
else throwSystem;
2016-02-16 17:37:45 +01:00
in
2018-02-15 10:39:57 +01:00
stdenv.mkDerivation rec {
name = "mprime-${version}";
version = "29.4b7";
2016-02-16 17:37:45 +01:00
src = fetchurl {
url = "https://www.mersenne.org/ftp_root/gimps/p95v${lib.replaceStrings ["."] [""] version}.source.zip";
2018-02-15 10:39:57 +01:00
sha256 = "0idaqm46m4yis7vl014scx57lpccvjbnyy79gmj8caxghyajws0m";
2016-02-16 17:37:45 +01:00
};
2018-02-15 10:39:57 +01:00
unpackCmd = "unzip -d src -q $curSrc || true";
2016-02-16 17:37:45 +01:00
2018-02-15 10:39:57 +01:00
nativeBuildInputs = [ unzip ];
buildInputs = [ curl hwloc gmp ];
2016-02-16 17:37:45 +01:00
patches = [ ./makefile.patch ];
buildPhase = ''
make -C gwnum -f ${gwnum}
make -C ${srcDir}
'';
installPhase = ''
install -D ${srcDir}/mprime $out/bin/mprime
'';
meta = {
description = "Mersenne prime search / System stability tester";
longDescription = ''
MPrime is the Linux command-line interface version of Prime95, to be run
in a text terminal or in a terminal emulator window as a remote shell
client. It is identical to Prime95 in functionality, except it lacks a
graphical user interface.
'';
2018-02-15 10:39:57 +01:00
homepage = "http://www.mersenne.org/";
2016-02-16 17:37:45 +01:00
# Unfree, because of a license requirement to share prize money if you find
# a suitable prime. http://www.mersenne.org/legal/#EULA
license = stdenv.lib.licenses.unfree;
# Untested on linux-32 and osx. Works in theory.
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"];
};
}