From 67481ad9293302fdbfc38dc974fbdfca26333234 Mon Sep 17 00:00:00 2001 From: "Bryan A. S" Date: Sun, 24 Jul 2022 20:24:17 -0300 Subject: [PATCH] mongodb-compass: 1.32.2 -> 1.32.4 - add notes about mongodb compass os support - change homepage link to point to github repo --- pkgs/tools/misc/mongodb-compass/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/mongodb-compass/default.nix b/pkgs/tools/misc/mongodb-compass/default.nix index 9d0e9f62b5dc..e2c09414f39e 100644 --- a/pkgs/tools/misc/mongodb-compass/default.nix +++ b/pkgs/tools/misc/mongodb-compass/default.nix @@ -33,7 +33,7 @@ xorg, }: let - version = "1.32.2"; + version = "1.32.4"; rpath = lib.makeLibraryPath [ alsa-lib @@ -82,10 +82,12 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; - sha256 = "sha256-ceQp4EiLEWy8niGC0uUdWJrvmdt9Ijt29YdLt7vtcyY="; + sha256 = "sha256-w66ky83VkPhoa4OibzcsaLSWhoI4DQvUGWaKsBuCB7Q="; } else throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}"; + # NOTE While MongoDB Compass is available to darwin, I do not have resources to test it + # Feel free to make a PR adding support if desired in stdenv.mkDerivation { pname = "mongodb-compass"; @@ -128,7 +130,7 @@ in stdenv.mkDerivation { meta = with lib; { description = "The GUI for MongoDB"; maintainers = with maintainers; [ bryanasdev000 ]; - homepage = "https://www.mongodb.com/products/compass"; + homepage = "https://github.com/mongodb-js/compass"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.sspl; platforms = [ "x86_64-linux" ];