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

35 lines
851 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libiconv }:
2013-06-27 13:43:50 +02:00
stdenv.mkDerivation rec {
2017-05-23 02:42:52 +02:00
version = "3.13";
2013-06-27 13:43:50 +02:00
name = "aescrypt-${version}";
2013-06-27 13:43:50 +02:00
src = fetchurl {
url = "http://www.aescrypt.com/download/v3/linux/${name}.tgz";
2017-05-23 02:42:52 +02:00
sha256 = "1a1rs7xmbxh355qg3v02rln3gshvy3j6wkx4g9ir72l22mp6zkc7";
2013-06-27 13:43:50 +02:00
};
preBuild = ''
cd src
'';
installPhase= ''
mkdir -p $out/bin
cp aescrypt $out/bin
cp aescrypt_keygen $out/bin
'';
buildInputs = [ libiconv ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
meta = with stdenv.lib; {
description = "Encrypt files with Advanced Encryption Standard (AES)";
homepage = http://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
hydraPlatforms = stdenv.lib.platforms.linux;
2013-06-27 13:43:50 +02:00
};
}