mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #336758 from drupol/mongodb-ce-fix-darwin
mongodb-ce: fix darwin build
This commit is contained in:
commit
2987ca5488
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
or (throw "unsupported system: ${stdenv.hostPlatform.system}")
|
||||
);
|
||||
|
||||
nativeBuildInputs = [ autoPatchelfHook ];
|
||||
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
||||
dontStrip = true;
|
||||
|
||||
buildInputs = [
|
||||
# This is to avoid the following error:
|
||||
|
|
Loading…
Reference in a new issue