nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 34 lines 915 B view raw
1{ 2 lib, 3 stdenv, 4 fetchsvn, 5 autoreconfHook, 6}: 7 8stdenv.mkDerivation { 9 pname = "srm"; 10 version = "1.2.15-unstable-2017-12-18"; 11 12 src = fetchsvn { 13 url = "svn://svn.code.sf.net/p/srm/srm/trunk/"; 14 rev = "268"; 15 sha256 = "sha256-bY8p6IS5zeByoe/uTmvBAaBN4Wu7J19dVSpbtqx4OeQ="; 16 }; 17 18 patches = [ ./fix-output-in-verbose-mode.patch ]; 19 nativeBuildInputs = [ autoreconfHook ]; 20 21 meta = { 22 description = "Delete files securely"; 23 longDescription = '' 24 srm (secure rm) is a command-line compatible rm(1) which 25 overwrites file contents before unlinking. The goal is to 26 provide drop in security for users who wish to prevent recovery 27 of deleted information, even if the machine is compromised. 28 ''; 29 homepage = "https://srm.sourceforge.net"; 30 license = lib.licenses.mit; 31 maintainers = with lib.maintainers; [ edwtjo ]; 32 platforms = lib.platforms.unix; 33 }; 34}