2014-10-17 23:57:37 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wipe";
|
2014-10-17 23:57:37 +01:00
|
|
|
version = "2.3.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/wipe/${version}/${pname}-${version}.tar.bz2";
|
2014-10-17 23:57:37 +01:00
|
|
|
sha256 = "180snqvh6k6il6prb19fncflf2jcvkihlb4w84sbndcv1wvicfa6";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./fix-install.patch ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Secure file wiping utility";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://wipe.sourceforge.net/";
|
2014-10-17 23:57:37 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.abbradar ];
|
|
|
|
};
|
|
|
|
}
|