nixpkgs/pkgs/tools/system/memtester/default.nix

27 lines
677 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-07-21 16:59:41 +00:00
stdenv.mkDerivation rec {
pname = "memtester";
2020-11-03 07:46:35 +00:00
version = "4.5.0";
2015-07-21 16:59:41 +00:00
2018-02-28 20:14:36 +00:00
preConfigure = ''
echo "$CC" > conf-cc
echo "$CC" > conf-ld
'';
2015-07-21 16:59:41 +00:00
src = fetchurl {
url = "http://pyropus.ca/software/memtester/old-versions/memtester-${version}.tar.gz";
2020-11-03 07:46:35 +00:00
sha256 = "0dxfwayns3hjjplkxkpkm1409lmjlpi4chcrahcvdbnl0q6jpmcf";
2015-07-21 16:59:41 +00:00
};
installFlags = [ "INSTALLPATH=$(out)" ];
meta = with lib; {
2015-07-21 16:59:41 +00:00
description = "A userspace utility for testing the memory subsystem for faults";
homepage = "http://pyropus.ca/software/memtester/";
2015-07-21 16:59:41 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.unix;
};
}