anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / servers / nosql / mongodb / 7.0.nix
blob42a425f4288efb0e5385aac3552db581566bc207
2   stdenv,
3   callPackage,
4   sasl,
5   boost,
6   Security,
7   CoreFoundation,
8   cctools,
9   avxSupport ? stdenv.hostPlatform.avxSupport,
10   nixosTests,
11   lib,
14 let
15   buildMongoDB = callPackage ./mongodb.nix {
16     inherit
17       sasl
18       boost
19       Security
20       CoreFoundation
21       cctools
22       stdenv
23       ;
24   };
26 buildMongoDB {
27   inherit avxSupport;
28   version = "7.0.14";
29   sha256 = "sha256-3NUv/Rr6V0rH6zHCXJwHZ7ZQOqMJvYGessNVemUF6g0=";
30   patches = [
31     # ModuleNotFoundError: No module named 'mongo_tooling_metrics':
32     # NameError: name 'SConsToolingMetrics' is not defined:
33     # The recommended linker 'lld' is not supported with the current compiler configuration, you can try the 'gold' linker with '--linker=gold'.
34     ./mongodb7-SConstruct.patch
36     # Fix building with python 3.12 since the imp module was removed
37     ./mongodb-python312.patch
39     # mongodb-7_0's mozjs uses avx2 instructions
40     # https://github.com/GermanAizek/mongodb-without-avx/issues/16
41   ] ++ lib.optionals (!avxSupport) [ ./mozjs-noavx.patch ];
43   passthru.tests = {
44     inherit (nixosTests) mongodb;
45   };