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