My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/aescrypt/default.nix

35 lines
898 B

{ lib, stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
version = "3.16";
pname = "aescrypt";
src = fetchurl {
url = "https://www.aescrypt.com/download/v3/linux/${pname}-${version}.tgz";
sha256 = "sha256-4uGS0LReq5dI7+Wel7ZWzFXx+utZWi93q4TUSw7AhNI=";
};
NIX_LDFLAGS = 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 lib; {
description = "Encrypt files with Advanced Encryption Standard (AES)";
homepage = "https://www.aescrypt.com/";
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = lib.platforms.all;
hydraPlatforms = with platforms; unix;
};
}