summary refs log tree commit diff
path: root/pkgs/tools/misc/aescrypt/default.nix
blob: f39e466c78f9361ada9048ab1fd62cb369aee062 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, libiconvOrEmpty }:

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";

  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;
  };
}