Merge pull request #222045 from vifino/vifino/bump-mongo

mongodb-4_2: 4.2.19 -> 4.2.24
This commit is contained in:
Weijia Wang 2023-03-25 11:26:21 +02:00 committed by GitHub
commit e7786feb61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

@ -186,5 +186,6 @@ in stdenv.mkDerivation rec {
maintainers = with maintainers; [ bluescreen303 offline cstrahan ];
platforms = subtractLists systems.doubles.i686 systems.doubles.unix;
broken = (versionOlder version "6.0" && stdenv.system == "aarch64-darwin");
};
}

View file

@ -9,8 +9,8 @@ let
inherit cctools;
};
in buildMongoDB {
version = "4.2.19";
sha256 = "sha256-fngTHd+fSdHqiqQYOYS7o6P5eHybeZy3iNKkGzFmjTw=";
version = "4.2.24";
sha256 = "sha256-O6nR4wfmupuc/Vjm72Vt8WFmbGm9GHR3p1GlEtgEJpg=";
patches = [
./forget-build-dependencies-4-2.patch
(fetchpatch {
@ -18,5 +18,10 @@ in buildMongoDB {
url = "https://raw.githubusercontent.com/gentoo/gentoo/7168257cad6ea7c4856b01c5703d0ed5b764367c/dev-db/mongodb/files/mongodb-4.4.1-gcc11.patch";
sha256 = "sha256-RvfCP462RG+ZVjcb23DgCuxCdfPl2/UgH8N7FgCghGI=";
})
(fetchpatch {
name = "mongodb-4.4.15-adjust-the-cache-alignment-assumptions.patch";
url = "https://aur.archlinux.org/cgit/aur.git/plain/mongodb-4.4.15-adjust-cache-alignment-assumptions.patch.arm64?h=mongodb44";
sha256 = "Ah4zdSFgXUJ/HSN8VRLJqDpNy3CjMCBnRqlpALXzx+g=";
})
] ++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-2.patch ];
}