lol
1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "srm";
5 version = "1.2.15";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/project/srm/${version}/srm-${version}.tar.gz";
9 sha256 = "10sjarhprs6s4zandndg720528rcnd4xk8dl48pjj7li1q9c30vm";
10 };
11
12 meta = with lib; {
13 description = "Delete files securely";
14 longDescription = ''
15 srm (secure rm) is a command-line compatible rm(1) which
16 overwrites file contents before unlinking. The goal is to
17 provide drop in security for users who wish to prevent recovery
18 of deleted information, even if the machine is compromised.
19 '';
20 homepage = "http://srm.sourceforge.net";
21 license = licenses.mit;
22 maintainers = with maintainers; [ edwtjo ];
23 platforms = platforms.unix;
24 };
25
26}