uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/tools/security/srm/default.nix
Normal file
26
pkgs/tools/security/srm/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "srm";
|
||||
version = "1.2.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/srm/${version}/srm-${version}.tar.gz";
|
||||
sha256 = "10sjarhprs6s4zandndg720528rcnd4xk8dl48pjj7li1q9c30vm";
|
||||
};
|
||||
|
||||
meta = with 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;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue