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

27 lines
794 B
Nix
Raw Normal View History

2014-12-08 10:27:05 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "srm-" + version;
2015-03-11 18:05:31 +00:00
version = "1.2.15";
2014-12-08 10:27:05 +00:00
src = fetchurl {
2015-03-11 18:05:31 +00:00
url = "mirror://sourceforge/project/srm/${version}/${name}.tar.gz";
sha256 = "10sjarhprs6s4zandndg720528rcnd4xk8dl48pjj7li1q9c30vm";
2014-12-08 10:27:05 +00:00
};
meta = with stdenv.lib; {
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.
'';
homepage = "http://srm.sourceforge.net";
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
};
}