2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-10-17 23:57:37 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-10-17 23:57:37 +01:00
|
|
|
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;
|
2021-03-08 15:12:29 +00:00
|
|
|
platforms = platforms.all;
|
2014-10-17 23:57:37 +01:00
|
|
|
maintainers = [ maintainers.abbradar ];
|
|
|
|
};
|
|
|
|
}
|