nixpkgs/pkgs/tools/misc/aescrypt/default.nix

35 lines
908 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libiconvOrEmpty }:
2013-06-27 13:43:50 +02:00
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 = [ libiconvOrEmpty ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
2013-06-27 13:43:50 +02:00
meta = with stdenv.lib; {
2013-07-01 18:24:43 +02:00
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 = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
2013-06-27 13:43:50 +02:00
};
}