1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Merge pull request #685 from qknight/aescrypt

added AES crypt with fixes from edolstra
This commit is contained in:
Joachim Schiele 2013-07-02 01:02:28 -07:00
commit e6bf2413ef
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "3.0.9";
name = "aescrypt-${version}";
src = fetchurl {
url = "http://www.aescrypt.com/download/v3/linux/${name}.tgz";
sha256 = "3f3590f9b7e50039611ba9c0cf1cae1b188a44bd39cfc41553db7ec5709c0882";
};
preBuild = ''
cd src
'';
installPhase= ''
mkdir -p $out/bin
cp aescrypt $out/bin
cp aescrypt_keygen $out/bin
'';
buildInputs = [];
meta = {
description = "A file encryption util that uses the industry standard Advanced Encryption Standard (AES) to easily and securely encrypt files";
homepage = http://www.aescrypt.com/;
license = "GPLv2";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.qknight ];
};
}

View file

@ -389,6 +389,8 @@ let
aespipe = callPackage ../tools/security/aespipe { };
aescrypt = callPackage ../tools/misc/aescrypt { };
ahcpd = callPackage ../tools/networking/ahcpd { };
aircrackng = callPackage ../tools/networking/aircrack-ng { };