summary refs log tree commit diff
path: root/pkgs/tools/security/srm/default.nix
blob: 9782d00267f577e1b0cc80348037f40fa309e3ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {

  name = "srm-" + version;
  version = "1.2.15";

  src = fetchurl {
    url = "mirror://sourceforge/project/srm/${version}/${name}.tar.gz";
    sha256 = "10sjarhprs6s4zandndg720528rcnd4xk8dl48pjj7li1q9c30vm";
  };

  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.unix;
  };

}