Merge pull request #182745 from bryanasdev000/mongodbcompass1324

authored by Sandro and committed by GitHub d8958fd9 5a0e0d73

+5 -3
+5 -3
pkgs/tools/misc/mongodb-compass/default.nix
··· 33 33 }: 34 34 35 35 let 36 - version = "1.32.2"; 36 + version = "1.32.4"; 37 37 38 38 rpath = lib.makeLibraryPath [ 39 39 alsa-lib ··· 82 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 83 fetchurl { 84 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 - sha256 = "sha256-ceQp4EiLEWy8niGC0uUdWJrvmdt9Ijt29YdLt7vtcyY="; 85 + sha256 = "sha256-w66ky83VkPhoa4OibzcsaLSWhoI4DQvUGWaKsBuCB7Q="; 86 86 } 87 87 else 88 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}"; 89 + # NOTE While MongoDB Compass is available to darwin, I do not have resources to test it 90 + # Feel free to make a PR adding support if desired 89 91 90 92 in stdenv.mkDerivation { 91 93 pname = "mongodb-compass"; ··· 128 130 meta = with lib; { 129 131 description = "The GUI for MongoDB"; 130 132 maintainers = with maintainers; [ bryanasdev000 ]; 131 - homepage = "https://www.mongodb.com/products/compass"; 133 + homepage = "https://github.com/mongodb-js/compass"; 132 134 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 133 135 license = licenses.sspl; 134 136 platforms = [ "x86_64-linux" ];