1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

aescrypt: fix build on darwin

* add libiconvOrEmpty to build inputs
* add '-liconv' to LDFLAGS
This commit is contained in:
Jason \"Don\" O'Conal 2013-07-07 19:16:00 +10:00 committed by Rok Garbas
parent ec9f54602e
commit 3fe02f7c8b

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, libiconvOrEmpty }:
stdenv.mkDerivation rec {
version = "3.0.9";
@ -19,14 +19,16 @@ stdenv.mkDerivation rec {
cp aescrypt_keygen $out/bin
'';
buildInputs = [];
buildInputs = [ libiconvOrEmpty ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
meta = {
meta = with stdenv.lib; {
description = "A file encryption util that uses the industry standard Advanced Encryption Standard (AES) to easily and securely encrypt files";
homepage = http://www.aescrypt.com/;
license = "GPLv2";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.qknight ];
homepage = http://www.aescrypt.com/;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 qknight ];
platforms = stdenv.lib.platforms.all;
};
}