Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
820 B
Nix
36 lines
820 B
Nix
{
|
|
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;
|
|
};
|
|
}
|