2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchgit }:
|
2012-04-09 21:54:34 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-05-08 17:01:05 +02:00
|
|
|
pname = "memtest86+";
|
|
|
|
version = "5.01-coreboot-002";
|
2013-10-02 11:37:43 +02:00
|
|
|
|
2018-04-22 19:04:51 +02:00
|
|
|
src = fetchgit {
|
2019-05-08 17:01:05 +02:00
|
|
|
url = "https://review.coreboot.org/memtest86plus.git";
|
|
|
|
rev = "v002";
|
|
|
|
sha256 = "0cwx20yja24bfknqh1rjb5rl2c0kwnppzsisg1dibbak0l8mxchk";
|
2012-04-09 21:54:34 +02:00
|
|
|
};
|
|
|
|
|
2015-06-28 00:49:30 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-I. -std=gnu90";
|
2013-10-02 11:37:43 +02:00
|
|
|
|
2018-04-22 18:38:27 +02:00
|
|
|
hardeningDisable = [ "all" ];
|
2016-03-04 14:48:06 +01:00
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
buildFlags = [ "memtest.bin" ];
|
2013-10-02 11:37:43 +02:00
|
|
|
|
2018-08-08 23:35:07 +02:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2012-04-09 21:54:34 +02:00
|
|
|
installPhase = ''
|
2019-05-08 17:01:05 +02:00
|
|
|
install -Dm0444 -t $out/ memtest.bin
|
2012-04-09 21:54:34 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2019-05-08 17:01:05 +02:00
|
|
|
homepage = "http://www.memtest.org/";
|
2013-10-02 11:37:43 +02:00
|
|
|
description = "A tool to detect memory errors";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2;
|
2017-12-03 18:47:03 +01:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2012-04-09 21:54:34 +02:00
|
|
|
};
|
|
|
|
}
|