dict: fix build on darwin

This commit is contained in:
Weijia Wang 2024-05-30 11:43:16 +02:00
parent 3892ca21ff
commit 561bb69e32

View File

@ -23,6 +23,10 @@ stdenv.mkDerivation rec {
"--sysconfdir=/etc"
];
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isClang [
"-Wno-error=implicit-function-declaration"
]);
postInstall = ''
install -Dm444 -t $out/share/doc/${pname} NEWS README
'';