diskscan: init at 0.19

This commit is contained in:
Peter Hoeg 2017-02-08 10:12:16 +08:00 committed by Franz Pletz
parent 6651c72df1
commit 6b2ea7ec6e
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, ncurses, zlib }:
stdenv.mkDerivation rec {
name = "diskscan-${version}";
version = "0.19";
src = fetchFromGitHub {
owner = "baruch";
repo = "diskscan";
rev = "${version}";
sha256 = "0yqpaxfahbjr8hr9xw7nngncwigy7yncdwnyp5wy9s9wdp8mrjra";
};
buildInputs = [ ncurses zlib ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
homepage = https://github.com/baruch/diskscan;
description = "Scan HDD/SSD for failed and near failed sectors";
platforms = with platforms; linux;
maintainers = with maintainers; [ peterhoeg ];
inherit version;
};
}

View File

@ -816,6 +816,8 @@ with pkgs;
discount = callPackage ../tools/text/discount { };
diskscan = callPackage ../tools/misc/diskscan { };
disorderfs = callPackage ../tools/filesystems/disorderfs {
asciidoc = asciidoc-full;
};