depot/third_party/nixpkgs/pkgs/tools/security/wipe/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
544 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "wipe";
version = "2.3.1";
src = fetchurl {
url = "mirror://sourceforge/wipe/${version}/${pname}-${version}.tar.bz2";
sha256 = "180snqvh6k6il6prb19fncflf2jcvkihlb4w84sbndcv1wvicfa6";
};
patches = [ ./fix-install.patch ];
meta = with stdenv.lib; {
description = "Secure file wiping utility";
homepage = "http://wipe.sourceforge.net/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.abbradar ];
};
}