Merge pull request #269600 from szlend/fix-libmcrypt-darwin
{mcrypt,libmcrypt}: fix build on darwin
This commit is contained in:
commit
3599977406
@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
|
||||
"ac_cv_func_realloc_0_nonnull=yes"
|
||||
];
|
||||
|
||||
env = lib.optionalAttrs stdenv.cc.isClang {
|
||||
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration -Wno-implicit-int";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
|
||||
homepage = "https://mcrypt.sourceforge.net";
|
||||
|
@ -19,6 +19,10 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ libmcrypt libmhash ];
|
||||
|
||||
env = lib.optionalAttrs stdenv.cc.isClang {
|
||||
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Replacement for old UNIX crypt(1)";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user