lol

Merge pull request #146193 from bryanasdev000/mongodb-compass

mongodb-compass: 1.25.0 -> 1.29.4

authored by

Thiago Kenji Okada and committed by
GitHub
c69f32ea 59e5ab02

+48 -12
+48 -12
pkgs/tools/misc/mongodb-compass/default.nix
··· 1 - { lib, stdenv, fetchurl, dpkg 2 - , alsa-lib, at-spi2-atk, at-spi2-core, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib 3 - , gnome2, gdk-pixbuf, gtk3, pango, libnotify, libsecret, libuuid, libxcb, nspr, nss, systemd, xorg, wrapGAppsHook }: 1 + { 2 + alsa-lib, 3 + at-spi2-atk, 4 + at-spi2-core, 5 + atk, 6 + cairo, 7 + cups, 8 + curl, 9 + dbus, 10 + dpkg, 11 + expat, 12 + fetchurl, 13 + fontconfig, 14 + freetype, 15 + gdk-pixbuf, 16 + glib, 17 + gnome2, 18 + gtk3, 19 + lib, 20 + libdrm, 21 + libnotify, 22 + libsecret, 23 + libuuid, 24 + libxcb, 25 + libxkbcommon, 26 + mesa, 27 + nspr, 28 + nss, 29 + pango, 30 + stdenv, 31 + systemd, 32 + wrapGAppsHook, 33 + xorg, 34 + }: 4 35 5 36 let 6 - version = "1.25.0"; 37 + version = "1.29.4"; 7 38 8 39 rpath = lib.makeLibraryPath [ 9 40 alsa-lib ··· 17 48 expat 18 49 fontconfig 19 50 freetype 51 + gdk-pixbuf 20 52 glib 21 53 gnome2.GConf 22 - gdk-pixbuf 23 54 gtk3 24 - pango 55 + libdrm 25 56 libnotify 26 57 libsecret 27 58 libuuid 28 59 libxcb 60 + libxkbcommon 61 + mesa 29 62 nspr 30 63 nss 64 + pango 31 65 stdenv.cc.cc 32 66 systemd 33 - 34 - xorg.libxkbfile 35 67 xorg.libX11 68 + xorg.libXScrnSaver 36 69 xorg.libXcomposite 37 70 xorg.libXcursor 38 71 xorg.libXdamage ··· 42 75 xorg.libXrandr 43 76 xorg.libXrender 44 77 xorg.libXtst 45 - xorg.libXScrnSaver 46 - ] + ":${stdenv.cc.cc.lib}/lib64"; 78 + xorg.libxkbfile 79 + xorg.libxshmfence 80 + (lib.getLib stdenv.cc.cc) 81 + ]; 47 82 48 83 src = 49 84 if stdenv.hostPlatform.system == "x86_64-linux" then 50 85 fetchurl { 51 86 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 52 - sha256 = "sha256-998/voQ04fLj3KZCy6BueUoI1v++4BoGRTGJT7Nsv40="; 87 + sha256 = "sha256-CqC6BrRhMfjxamSwC6ub1u3+FtDuIq3/OMNdUZgpCAQ="; 53 88 } 54 89 else 55 90 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}"; ··· 94 129 95 130 meta = with lib; { 96 131 description = "The GUI for MongoDB"; 132 + maintainers = with maintainers; [ bryanasdev000 ]; 97 133 homepage = "https://www.mongodb.com/products/compass"; 98 - license = licenses.unfree; 134 + license = licenses.sspl; 99 135 platforms = [ "x86_64-linux" ]; 100 136 }; 101 137 }