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

36 lines
911 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 {
2017-08-13 14:18:49 +02:00
url = "https://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
};
2018-05-26 19:49:13 +02:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
2013-06-27 13:43:50 +02:00
preBuild = ''
2018-05-26 19:49:13 +02:00
substituteInPlace src/Makefile --replace "CC=gcc" "CC?=gcc"
2013-06-27 13:43:50 +02: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 14:18:49 +02:00
homepage = https://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
2018-05-26 19:49:13 +02:00
hydraPlatforms = with platforms; unix;
2013-06-27 13:43:50 +02:00
};
}