Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions pkgs/os-specific/linux/flashbench/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
{ lib, stdenv, fetchgit }:
{ lib, stdenv, fetchFromGitHub }:

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

src = fetchgit {
url = "https://github.com/bradfa/flashbench.git";
rev = "2e30b1968a66147412f21002ea844122a0d5e2f0";
sha256 = "037rhd2alwfip9qk78cy8fwwnc2kdyzccsyc7v2zpmvl4vvpvnhg";
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.gpl2;
license = licenses.gpl2Only;
maintainers = [ maintainers.rycee ];
};
}