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

36 lines
911 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libiconv }:
2013-06-27 11:43:50 +00:00
stdenv.mkDerivation rec {
version = "3.14";
2013-06-27 11:43:50 +00:00
name = "aescrypt-${version}";
2013-06-27 11:43:50 +00:00
src = fetchurl {
2017-08-13 12:18:49 +00:00
url = "https://www.aescrypt.com/download/v3/linux/${name}.tgz";
sha256 = "1iziymcbpc64d44djgqfifpblsly4sr5bxsp5g29jgxz552kjlah";
2013-06-27 11:43:50 +00:00
};
2018-05-26 17:49:13 +00:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
2013-06-27 11:43:50 +00:00
preBuild = ''
2018-05-26 17:49:13 +00:00
substituteInPlace src/Makefile --replace "CC=gcc" "CC?=gcc"
2013-06-27 11:43:50 +00:00
cd src
'';
installPhase= ''
mkdir -p $out/bin
cp aescrypt $out/bin
cp aescrypt_keygen $out/bin
'';
buildInputs = [ libiconv ];
meta = with stdenv.lib; {
description = "Encrypt files with Advanced Encryption Standard (AES)";
2017-08-13 12:18:49 +00:00
homepage = https://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
2018-05-26 17:49:13 +00:00
hydraPlatforms = with platforms; unix;
2013-06-27 11:43:50 +00:00
};
}