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

36 lines
899 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libiconv }:
2013-06-27 11:43:50 +00:00
stdenv.mkDerivation rec {
version = "3.14";
pname = "aescrypt";
2013-06-27 11:43:50 +00:00
src = fetchurl {
url = "https://www.aescrypt.com/download/v3/linux/${pname}-${version}.tgz";
sha256 = "1iziymcbpc64d44djgqfifpblsly4sr5bxsp5g29jgxz552kjlah";
2013-06-27 11:43:50 +00:00
};
2021-01-15 09:19:50 +00:00
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-liconv";
2018-05-26 17:49:13 +00:00
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 lib; {
description = "Encrypt files with Advanced Encryption Standard (AES)";
homepage = "https://www.aescrypt.com/";
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.all;
2018-05-26 17:49:13 +00:00
hydraPlatforms = with platforms; unix;
2013-06-27 11:43:50 +00:00
};
}