summary refs log tree commit diff
path: root/pkgs/os-specific/linux/flashbench/default.nix
blob: 619aea69aa64aebd9825defa8d24056fa55fbbe6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "flashbench-unstable";
  version = "2020-01-23";

  src = fetchFromGitHub {
    owner = "bradfa";
    repo = "flashbench";
    rev = "d783b1bd2443812c6deadc31b081f043e43e4c1a";
    sha256 = "045j1kpay6x2ikz8x54ph862ymfy1nzpbmmqpf3nkapiv32fjqw5";
  };

  installPhase = ''
    runHook preInstall

    install -d -m755 $out/bin $out/share/doc/flashbench
    install -v -m755 flashbench $out/bin
    install -v -m755 erase $out/bin/flashbench-erase
    install -v -m644 README $out/share/doc/flashbench

    runHook postInstall
  '';

  meta = with lib; {
    description = "Testing tool for flash based memory devices";
    homepage = "https://github.com/bradfa/flashbench";
    platforms = platforms.linux;
    license = licenses.gpl2Only;
  };
}