nixpkgs/pkgs/tools/security/nwipe/default.nix

23 lines
693 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, ncurses, parted, automake, autoconf, pkg-config }:
stdenv.mkDerivation rec {
2020-03-30 06:55:38 +00:00
version = "0.28";
pname = "nwipe";
src = fetchFromGitHub {
owner = "martijnvanbrummelen";
repo = "nwipe";
rev = "v${version}";
2020-03-30 06:55:38 +00:00
sha256 = "1aw905lmn1vm6klqn3q7445dwmwbjhcmwnkygpq9rddacgig1gdx";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ automake autoconf pkg-config ];
buildInputs = [ ncurses parted ];
preConfigure = "sh init.sh || :";
meta = with lib; {
description = "Securely erase disks";
2020-03-04 08:31:40 +00:00
homepage = "https://github.com/martijnvanbrummelen/nwipe";
license = licenses.gpl2;
maintainers = [ maintainers.woffs ];
platforms = platforms.linux;
};
}