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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
676 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-07-21 18:59:41 +02:00
stdenv.mkDerivation rec {
pname = "memtester";
2022-04-08 13:26:11 +02:00
version = "4.5.1";
2015-07-21 18:59:41 +02:00
2018-02-28 21:14:36 +01:00
preConfigure = ''
echo "$CC" > conf-cc
echo "$CC" > conf-ld
'';
2015-07-21 18:59:41 +02:00
src = fetchurl {
url = "http://pyropus.ca/software/memtester/old-versions/memtester-${version}.tar.gz";
2022-04-08 13:26:11 +02:00
sha256 = "sha256-HF/COCV2wISzFM/TNNEnpmwgvWOJLKyfRFvB2LTKWkc=";
2015-07-21 18:59:41 +02:00
};
installFlags = [ "INSTALLPATH=$(out)" ];
meta = with lib; {
2015-07-21 18:59:41 +02:00
description = "A userspace utility for testing the memory subsystem for faults";
homepage = "http://pyropus.ca/software/memtester/";
2015-07-21 18:59:41 +02:00
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.unix;
};
}