about summary refs log tree commit diff
path: root/pkgs/tools/security/nwipe/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/nwipe/default.nix')
-rw-r--r--pkgs/tools/security/nwipe/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/tools/security/nwipe/default.nix b/pkgs/tools/security/nwipe/default.nix
deleted file mode 100644
index 00c66f3519306..0000000000000
--- a/pkgs/tools/security/nwipe/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, stdenv
-, autoreconfHook
-, fetchFromGitHub
-, ncurses
-, parted
-, pkg-config
-}:
-
-stdenv.mkDerivation rec {
-  pname = "nwipe";
-  version = "0.34";
-
-  src = fetchFromGitHub {
-    owner = "martijnvanbrummelen";
-    repo = "nwipe";
-    rev = "v${version}";
-    sha256 = "sha256-7WI8AwWkg9rOjAbOyDgCVOpeMxvJ5Bd1yvzfSv6TPLs=";
-  };
-
-  nativeBuildInputs = [
-    autoreconfHook
-    pkg-config
-  ];
-
-  buildInputs = [
-    ncurses
-    parted
-  ];
-
-  preConfigure = ''
-    sh init.sh || :
-  '';
-
-  meta = with lib; {
-    description = "Securely erase disks";
-    mainProgram = "nwipe";
-    homepage = "https://github.com/martijnvanbrummelen/nwipe";
-    license = licenses.gpl2Only;
-    maintainers = with maintainers; [ woffs ];
-    platforms = platforms.linux;
-  };
-}