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

22 lines
540 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-10-17 22:57:37 +00:00
stdenv.mkDerivation rec {
pname = "wipe";
2014-10-17 22:57:37 +00:00
version = "2.3.1";
src = fetchurl {
url = "mirror://sourceforge/wipe/${version}/${pname}-${version}.tar.bz2";
2014-10-17 22:57:37 +00:00
sha256 = "180snqvh6k6il6prb19fncflf2jcvkihlb4w84sbndcv1wvicfa6";
};
patches = [ ./fix-install.patch ];
meta = with lib; {
2014-10-17 22:57:37 +00:00
description = "Secure file wiping utility";
homepage = "http://wipe.sourceforge.net/";
2014-10-17 22:57:37 +00:00
license = licenses.gpl2;
2021-03-08 15:12:29 +00:00
platforms = platforms.all;
2014-10-17 22:57:37 +00:00
maintainers = [ maintainers.abbradar ];
};
}