1 { lib, stdenv, fetchFromGitHub, cmake, ncurses, zlib }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1s2df082yrnr3gqnapdsqz0yd0ld75bin37g0rms83ymzkh4ysgv";
14 buildInputs = [ ncurses zlib ];
16 nativeBuildInputs = [ cmake ];
19 homepage = "https://github.com/baruch/diskscan";
20 description = "Scan HDD/SSD for failed and near failed sectors";
21 platforms = with platforms; linux;
22 maintainers = with maintainers; [ peterhoeg ];
23 license = licenses.gpl3;