2021-04-19 22:54:39 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, autoreconfHook
|
|
|
|
, fetchFromGitHub
|
|
|
|
, ncurses
|
|
|
|
, parted
|
|
|
|
, pkg-config
|
|
|
|
}:
|
2018-06-11 10:41:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nwipe";
|
2021-04-19 22:54:39 +01:00
|
|
|
version = "0.30";
|
|
|
|
|
2018-06-11 10:41:59 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martijnvanbrummelen";
|
|
|
|
repo = "nwipe";
|
|
|
|
rev = "v${version}";
|
2021-04-19 22:54:39 +01:00
|
|
|
sha256 = "sha256-cNZMFnk4L95jKTyGEUN3DlAChUNZlIjDdZqkkwPjehE=";
|
2018-06-11 10:41:59 +01:00
|
|
|
};
|
2021-04-19 22:54:39 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
parted
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh init.sh || :
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-11 10:41:59 +01:00
|
|
|
description = "Securely erase disks";
|
2020-03-04 08:31:40 +00:00
|
|
|
homepage = "https://github.com/martijnvanbrummelen/nwipe";
|
2021-04-19 22:54:39 +01:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ woffs ];
|
2018-06-11 10:41:59 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|