python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / nwipe / default.nix
blob35ca1f9b4125cb7f880d13495dc5ed4cc0dcf34c
1 { lib
2 , stdenv
3 , autoreconfHook
4 , fetchFromGitHub
5 , ncurses
6 , parted
7 , pkg-config
8 }:
10 stdenv.mkDerivation rec {
11   pname = "nwipe";
12   version = "0.34";
14   src = fetchFromGitHub {
15     owner = "martijnvanbrummelen";
16     repo = "nwipe";
17     rev = "v${version}";
18     sha256 = "sha256-7WI8AwWkg9rOjAbOyDgCVOpeMxvJ5Bd1yvzfSv6TPLs=";
19   };
21   nativeBuildInputs = [
22     autoreconfHook
23     pkg-config
24   ];
26   buildInputs = [
27     ncurses
28     parted
29   ];
31   preConfigure = ''
32     sh init.sh || :
33   '';
35   meta = with lib; {
36     description = "Securely erase disks";
37     homepage = "https://github.com/martijnvanbrummelen/nwipe";
38     license = licenses.gpl2Only;
39     maintainers = with maintainers; [ woffs ];
40     platforms = platforms.linux;
41   };