memtest86+: 5.01+coreboot-20180113 -> 5.01-coreboot-002

Latest stable stag of the coreboot fork
This commit is contained in:
c0bw3b 2019-05-08 17:01:05 +02:00
parent 84a51650b9
commit 4c5dc1fa30

View File

@ -1,23 +1,15 @@
{ stdenv, fetchgit }: { stdenv, fetchgit }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "memtest86+-5.01+coreboot-20180113"; pname = "memtest86+";
version = "5.01-coreboot-002";
src = fetchgit { src = fetchgit {
url = "https://review.coreboot.org/memtest86plus"; url = "https://review.coreboot.org/memtest86plus.git";
rev = "5ca4eb9544e51254254d09ae6e70f93403469ec3"; rev = "v002";
sha256 = "08m4rjr0chhhb1whgggknz926zv9hm8bisnxqp8lffqiwhb55rgk"; sha256 = "0cwx20yja24bfknqh1rjb5rl2c0kwnppzsisg1dibbak0l8mxchk";
}; };
preBuild = ''
# Really dirty hack to get Memtest to build without needing a Glibc
# with 32-bit libraries and headers.
if test "$system" = x86_64-linux; then
mkdir gnu
touch gnu/stubs-32.h
fi
'';
NIX_CFLAGS_COMPILE = "-I. -std=gnu90"; NIX_CFLAGS_COMPILE = "-I. -std=gnu90";
hardeningDisable = [ "all" ]; hardeningDisable = [ "all" ];
@ -27,13 +19,11 @@ stdenv.mkDerivation rec {
doCheck = false; # fails doCheck = false; # fails
installPhase = '' installPhase = ''
mkdir -p $out install -Dm0444 -t $out/ memtest.bin
chmod -x memtest.bin
cp memtest.bin $out/
''; '';
meta = { meta = {
homepage = http://www.memtest.org/; homepage = "http://www.memtest.org/";
description = "A tool to detect memory errors"; description = "A tool to detect memory errors";
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ]; platforms = [ "x86_64-linux" "i686-linux" ];