summary refs log tree commit diff
path: root/pkgs/os-specific/linux/flashbench/default.nix
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2021-02-12 13:02:34 +0100
committerRobert Helgesson <robert@rycee.net>2021-02-12 20:34:53 +0100
commitba680416b9f820bf3cb4bdcd375e162e26a8221c (patch)
tree3fc06afd7e367995978fa2f8900e4dd95f889ba5 /pkgs/os-specific/linux/flashbench/default.nix
parentb2dbb4f50e314c1ec9cc135177ba465d295a83a4 (diff)
downloadnixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar.gz
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar.bz2
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar.lz
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar.xz
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.tar.zst
nixpkgs-ba680416b9f820bf3cb4bdcd375e162e26a8221c.zip
flashbench: 2012-06-06 -> 2020-01-23
Also

- use fetchFromGitHub instead of fetchgit

- clarify license gpl2 -> gpl2Only

- run preInstall and postInstall phases

- mark version as unstable
Diffstat (limited to 'pkgs/os-specific/linux/flashbench/default.nix')
-rw-r--r--pkgs/os-specific/linux/flashbench/default.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/pkgs/os-specific/linux/flashbench/default.nix b/pkgs/os-specific/linux/flashbench/default.nix
index 9c14fde319d..44bcbba205e 100644
--- a/pkgs/os-specific/linux/flashbench/default.nix
+++ b/pkgs/os-specific/linux/flashbench/default.nix
@@ -1,27 +1,32 @@
-{ lib, stdenv, fetchgit }:
+{ lib, stdenv, fetchFromGitHub }:
 
 stdenv.mkDerivation {
-  pname = "flashbench";
-  version = "2012-06-06";
+  pname = "flashbench-unstable";
+  version = "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 ];
   };
 }