mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
* Updated memtest86. Hopefully this fixes the spurious memory errors
in the NixOS ISO built against the stdenv branch. svn path=/nixpkgs/branches/stdenv-updates/; revision=14820
This commit is contained in:
parent
5a03361f2d
commit
3693c7a03d
@ -1,11 +1,11 @@
|
|||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "memtest86+-1.70";
|
name = "memtest86+-2.11";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.memtest.org/download/1.70/memtest86+-1.70.tar.gz;
|
url = http://www.memtest.org/download/2.11/memtest86+-2.11.tar.gz;
|
||||||
sha256 = "1swj4hc764qwb3j80kvvb4qg5maq9dp8pxzy9jkk187jf92j8vfw";
|
sha256 = "03kcw6f62na3s08ybhnafn4s1pqs0z5lxl103xwxx77345r6m1s3";
|
||||||
};
|
};
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
@ -23,4 +23,9 @@ stdenv.mkDerivation {
|
|||||||
ensureDir $out
|
ensureDir $out
|
||||||
cp memtest.bin $out/
|
cp memtest.bin $out/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.memtest.org/;
|
||||||
|
description = "A tool to detect memory errors";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user