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 16:59:41 +00:00
stdenv.mkDerivation rec {
pname = "memtester";
2022-12-25 02:03:47 +00:00
version = "4.6.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";
2022-12-25 02:03:47 +00:00
sha256 = "sha256-yf5Ot+gMjO9SAvkGXEwGgvVhZkfARV6RalcA+Y49uy4=";
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;
};
}