nixpkgs/pkgs/tools/system/rowhammer-test/default.nix

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

31 lines
829 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2016-03-11 13:29:56 +00:00
stdenv.mkDerivation {
pname = "rowhammer-test";
2021-07-29 12:44:59 +00:00
version = "unstable-2015-08-11";
2016-03-11 13:29:56 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "rowhammer-test";
2021-07-29 12:44:59 +00:00
rev = "c1d2bd9f629281402c10bb10e52bc1f1faf59cc4";
2016-03-11 13:29:56 +00:00
sha256 = "1fbfcnm5gjish47wdvikcsgzlb5vnlfqlzzm6mwiw2j5qkq0914i";
};
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isi686 "-Wno-error=format";
2016-03-11 13:29:56 +00:00
buildPhase = "sh -e make.sh";
installPhase = ''
mkdir -p $out/bin
cp rowhammer_test double_sided_rowhammer $out/bin
'';
meta = with lib; {
2016-03-11 13:29:56 +00:00
description = "Test DRAM for bit flips caused by the rowhammer problem";
homepage = "https://github.com/google/rowhammer-test";
2016-03-11 13:29:56 +00:00
license = licenses.asl20;
maintainers = [ maintainers.viric ];
platforms = [ "x86_64-linux" "i686-linux" ];
2016-03-11 13:29:56 +00:00
};
}