nixpkgs/pkgs/tools/misc/memtest86/default.nix
Eelco Dolstra 8482c13edc * Hopefully really fix memtest86.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14829
2009-04-02 07:55:47 +00:00

35 lines
859 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "memtest86+-2.11";
src = fetchurl {
url = http://www.memtest.org/download/2.11/memtest86+-2.11.tar.gz;
sha256 = "03kcw6f62na3s08ybhnafn4s1pqs0z5lxl103xwxx77345r6m1s3";
};
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
'';
# Override the default optimisation setting (`-Os') to prevent lots
# of spurious errors. See
# https://bugs.launchpad.net/fedora/+source/memtest86+/+bug/246412.
NIX_CFLAGS_COMPILE = "-O1 -I.";
installPhase = ''
ensureDir $out
cp memtest.bin $out/
'';
meta = {
homepage = http://www.memtest.org/;
description = "A tool to detect memory errors";
};
}