Skip to content

Commit

Permalink
Merge pull request NixOS#333623 from drupol/init/mongodb-ce/7-0-12
Browse files Browse the repository at this point in the history
mongodb-ce: init at 7.0.12
  • Loading branch information
drupol authored Aug 17, 2024
2 parents ca24b69 + d3f2234 commit 8a47aef
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/applications/editors/vscode/extensions/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3106,6 +3106,8 @@ let
};
};

mongodb.mongodb-vscode = callPackage ./mongodb.mongodb-vscode { };

moshfeu.compare-folders = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "compare-folders";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ lib, vscode-utils }:

vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "mongodb-vscode";
publisher = "mongodb";
version = "1.7.0";
hash = "sha256-EDU8kQLTQIe5D905ZVskFt/28Mzv1Zr7auqG4tksQ/o=";
};

meta = {
changelog = "https://github.com/mongodb-js/vscode/blob/main/CHANGELOG.md";
description = "An extension for VS Code that makes it easy to work with your data in MongoDB";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=mongodb.mongodb-vscode";
homepage = "https://github.com/mongodb-js/vscode";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ drupol ];
};
}
131 changes: 131 additions & 0 deletions pkgs/by-name/mo/mongodb-ce/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
{
stdenv,
lib,
fetchurl,
autoPatchelfHook,
curl,
openssl,
testers,
mongodb-ce,
writeShellApplication,
jq,
nix-update,
gitMinimal,
pup,
}:

let
version = "7.0.12";

srcs = version: {
"x86_64-linux" = {
url = "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-${version}.tgz";
hash = "sha256-Kgq66rOBKgNIVw6bvzNrpnGRxyoBCP0AWnfzs9ReVVk=";
};
"aarch64-linux" = {
url = "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-${version}.tgz";
hash = "sha256-OLxPpAYFicWrqRJo3cNIG5Y0S6MIMd2vW8bluQkqnyk=";
};
"x86_64-darwin" = {
url = "https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-${version}.tgz";
hash = "sha256-sKfg1EpRQ7L2rgJArRHQLrawU8bh42liih5GR2/3jok=";
};
"aarch64-darwin" = {
url = "https://fastdl.mongodb.org/osx/mongodb-macos-arm64-${version}.tgz";
hash = "sha256-XkFSuKKxgSRoyzzrPYamE/44FV8ol125nqDOB9EnSMM=";
};
};
in
stdenv.mkDerivation (finalAttrs: {
pname = "mongodb-ce";
inherit version;

src = fetchurl (
(srcs version).${stdenv.hostPlatform.system}
or (throw "unsupported system: ${stdenv.hostPlatform.system}")
);

nativeBuildInputs = [ autoPatchelfHook ];

buildInputs = [
# This is to avoid the following error:
# ./result/bin/mongod: /nix/store/y6w7agm3aw5p96q7vsgzivba0dqq3rd0-curl-8.8.0/lib/libcurl.so.4: no version information available (required by ./result/bin/mongod)
# When running `mongod --version`
# See https://discourse.nixos.org/t/patchelf-and-libcurl-no-version-information-available/24453
(curl.overrideAttrs (old: {
configureFlags = old.configureFlags ++ [ "--enable-versioned-symbols" ];
})).dev
openssl.dev
stdenv.cc.cc.lib
];

installPhase = ''
runHook preInstall
install -Dm 755 bin/mongod $out/bin/mongod
install -Dm 755 bin/mongos $out/bin/mongos
runHook postInstall
'';

passthru = {

updateScript =
let
script = writeShellApplication {
name = "${finalAttrs.pname}-updateScript";

runtimeInputs = [
curl
jq
nix-update
gitMinimal
pup
];

text =
''
# Get latest version string from Github
NEW_VERSION=$(curl -s "https://api.github.com/repos/mongodb/mongo/tags?per_page=1000" | jq -r 'first(.[] | .name | select(startswith("r7.0")) | select(contains("rc") | not) | .[1:])')
# Check if the new version is available for download, if not, exit
AVAILABLE=$(curl -s https://www.mongodb.com/try/download/community-edition/releases | pup 'h3:not([id]) text{}' | grep "$NEW_VERSION")
if [[ "${version}" = "$NEW_VERSION" ]]; then
echo "The new version same as the old version."
exit 0
fi
''
+ lib.concatStrings (
map (system: ''
nix-update --system ${system} --version "$NEW_VERSION" ${finalAttrs.pname}
'') finalAttrs.meta.platforms
);
};
in
{
command = lib.getExe script;
};

tests.version = testers.testVersion {
package = mongodb-ce;
command = "mongod --version";
};
};

meta = {
changelog = "https://www.mongodb.com/docs/upcoming/release-notes/7.0/";
description = "MongoDB is a general purpose, document-based, distributed database.";
homepage = "https://www.mongodb.com/";
license = with lib.licenses; [ sspl ];
longDescription = ''
MongoDB CE (Community Edition) is a general purpose, document-based, distributed database.
It is designed to be flexible and easy to use, with the ability to store data of any structure.
This pre-compiled binary distribution package provides the MongoDB daemon (mongod) and the MongoDB Shard utility
(mongos).
'';
maintainers = with lib.maintainers; [ drupol ];
platforms = lib.attrNames (srcs version);
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})

0 comments on commit 8a47aef

Please sign in to comment.