My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/memtest86+/default.nix

31 lines
679 B

{ lib, stdenv, fetchgit }:
stdenv.mkDerivation {
pname = "memtest86+";
version = "5.01-coreboot-002";
src = fetchgit {
url = "https://review.coreboot.org/memtest86plus.git";
rev = "v002";
sha256 = "0cwx20yja24bfknqh1rjb5rl2c0kwnppzsisg1dibbak0l8mxchk";
};
NIX_CFLAGS_COMPILE = "-I. -std=gnu90";
hardeningDisable = [ "all" ];
buildFlags = [ "memtest.bin" ];
doCheck = false; # fails
installPhase = ''
install -Dm0444 -t $out/ memtest.bin
'';
meta = {
homepage = "http://www.memtest.org/";
description = "A tool to detect memory errors";
license = lib.licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
};
}