nixpkgs/pkgs/tools/system/memtester/default.nix
2022-12-25 12:53:46 +01:00

27 lines
676 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "memtester";
version = "4.6.0";
preConfigure = ''
echo "$CC" > conf-cc
echo "$CC" > conf-ld
'';
src = fetchurl {
url = "http://pyropus.ca/software/memtester/old-versions/memtester-${version}.tar.gz";
sha256 = "sha256-yf5Ot+gMjO9SAvkGXEwGgvVhZkfARV6RalcA+Y49uy4=";
};
installFlags = [ "INSTALLPATH=$(out)" ];
meta = with lib; {
description = "A userspace utility for testing the memory subsystem for faults";
homepage = "http://pyropus.ca/software/memtester/";
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.unix;
};
}