mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
27 lines
664 B
Nix
27 lines
664 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, ncurses, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "diskscan";
|
|
version = "0.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "baruch";
|
|
repo = "diskscan";
|
|
rev = version;
|
|
sha256 = "sha256-2y1ncPg9OKxqImBN5O5kXrTsuwZ/Cg/8exS7lWyZY1c=";
|
|
};
|
|
|
|
buildInputs = [ ncurses zlib ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with 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 ];
|
|
license = licenses.gpl3;
|
|
mainProgram = "diskscan";
|
|
};
|
|
}
|