disk-filltest: init at 0.8.1
This commit is contained in:
parent
a8ca52f4f8
commit
a1582ae755
38
pkgs/tools/system/disk-filltest/default.nix
Normal file
38
pkgs/tools/system/disk-filltest/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "disk-filltest";
|
||||||
|
version = "0.8.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bingmann";
|
||||||
|
repo = "disk-filltest";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1vcb43hdln7xlklz1n0fsfp5x1j9pn829wbad4b110hrc7nwrnvm";
|
||||||
|
};
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
substituteInPlace Makefile --replace 'prefix = /usr/local' 'prefix = $(out)'
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -D -m0644 -t $out/share/doc COPYING README
|
||||||
|
mkdir -p $out/share/man; mv $out/man1 $out/share/man
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Simple program to detect bad disks by filling them with random data";
|
||||||
|
longDescription = ''
|
||||||
|
disk-filltest is a tool to check storage disks for coming
|
||||||
|
failures by write files with pseudo-random data to the current
|
||||||
|
directory until the disk is full, read the files again
|
||||||
|
and verify the sequence written. It also can measure
|
||||||
|
read/write speed while filling the disk.
|
||||||
|
'';
|
||||||
|
homepage = "https://panthema.net/2013/disk-filltest";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ caadar ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -1633,6 +1633,8 @@ in
|
||||||
|
|
||||||
discount = callPackage ../tools/text/discount { };
|
discount = callPackage ../tools/text/discount { };
|
||||||
|
|
||||||
|
disk-filltest = callPackage ../tools/system/disk-filltest { };
|
||||||
|
|
||||||
diskscan = callPackage ../tools/misc/diskscan { };
|
diskscan = callPackage ../tools/misc/diskscan { };
|
||||||
|
|
||||||
disorderfs = callPackage ../tools/filesystems/disorderfs {
|
disorderfs = callPackage ../tools/filesystems/disorderfs {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user