nixpkgs/pkgs/tools/misc/aescrypt/default.nix
R. RyanTM ab08921f45 aescrypt: 3.13 -> 3.14
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/aescrypt/versions
2019-03-03 09:19:02 +01:00

36 lines
911 B
Nix

{ stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
version = "3.14";
name = "aescrypt-${version}";
src = fetchurl {
url = "https://www.aescrypt.com/download/v3/linux/${name}.tgz";
sha256 = "1iziymcbpc64d44djgqfifpblsly4sr5bxsp5g29jgxz552kjlah";
};
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
preBuild = ''
substituteInPlace src/Makefile --replace "CC=gcc" "CC?=gcc"
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)";
homepage = https://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
hydraPlatforms = with platforms; unix;
};
}