2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-12-08 10:27:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-29 18:24:13 +00:00
|
|
|
pname = "srm";
|
2015-03-11 18:05:31 +00:00
|
|
|
version = "1.2.15";
|
2014-12-08 10:27:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-29 18:24:13 +00:00
|
|
|
url = "mirror://sourceforge/project/srm/${version}/srm-${version}.tar.gz";
|
2015-03-11 18:05:31 +00:00
|
|
|
sha256 = "10sjarhprs6s4zandndg720528rcnd4xk8dl48pjj7li1q9c30vm";
|
2014-12-08 10:27:05 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-12-08 10:27:05 +00:00
|
|
|
description = "Delete files securely";
|
|
|
|
longDescription = ''
|
|
|
|
srm (secure rm) is a command-line compatible rm(1) which
|
|
|
|
overwrites file contents before unlinking. The goal is to
|
|
|
|
provide drop in security for users who wish to prevent recovery
|
|
|
|
of deleted information, even if the machine is compromised.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://srm.sourceforge.net";
|
2014-12-08 10:27:05 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
2018-03-30 23:30:39 +01:00
|
|
|
platforms = platforms.unix;
|
2014-12-08 10:27:05 +00:00
|
|
|
};
|
|
|
|
|
2018-03-30 23:30:39 +01:00
|
|
|
}
|