15 stdenv.mkDerivation rec {
19 src = fetchFromGitHub {
20 owner = "martijnvanbrummelen";
23 sha256 = "sha256-0mBiWKkMV8i9n158k843caulF90k43ctpMvKhc4HZxY";
39 wrapProgram $out/bin/nwipe \
40 --prefix PATH : ${lib.makeBinPath [ hdparm smartmontools dmidecode ]}
43 enableParallelBuilding = true;
46 description = "Securely erase disks";
47 mainProgram = "nwipe";
48 homepage = "https://github.com/martijnvanbrummelen/nwipe";
49 license = licenses.gpl2Only;
50 maintainers = with maintainers; [ vifino woffs ];
51 platforms = platforms.linux;