nixpkgs/pkgs/tools/misc/mongodb-compass/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

139 lines
2.7 KiB
Nix
Raw Normal View History

2021-11-16 23:13:42 +01:00
{
alsa-lib,
at-spi2-atk,
at-spi2-core,
atk,
cairo,
cups,
curl,
dbus,
dpkg,
expat,
fetchurl,
fontconfig,
freetype,
gdk-pixbuf,
glib,
gtk3,
lib,
libdrm,
libnotify,
libsecret,
libuuid,
libxcb,
libxkbcommon,
mesa,
nspr,
nss,
pango,
stdenv,
systemd,
wrapGAppsHook,
xorg,
}:
2018-05-09 04:14:37 +02:00
let
2022-09-16 00:58:29 +02:00
version = "1.33.1";
2018-05-09 04:14:37 +02:00
2021-01-15 10:19:50 +01:00
rpath = lib.makeLibraryPath [
alsa-lib
at-spi2-atk
at-spi2-core
2018-05-09 04:14:37 +02:00
atk
cairo
cups
curl
dbus
expat
fontconfig
freetype
2021-11-16 23:13:42 +01:00
gdk-pixbuf
2018-05-09 04:14:37 +02:00
glib
2020-10-25 20:38:25 +01:00
gtk3
2021-11-16 23:13:42 +01:00
libdrm
2018-05-09 04:14:37 +02:00
libnotify
libsecret
libuuid
2018-05-09 04:14:37 +02:00
libxcb
2021-11-16 23:13:42 +01:00
libxkbcommon
mesa
2018-05-09 04:14:37 +02:00
nspr
nss
2021-11-16 23:13:42 +01:00
pango
2018-05-09 04:14:37 +02:00
stdenv.cc.cc
systemd
xorg.libX11
2021-11-16 23:13:42 +01:00
xorg.libXScrnSaver
2018-05-09 04:14:37 +02:00
xorg.libXcomposite
xorg.libXcursor
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXi
xorg.libXrandr
xorg.libXrender
xorg.libXtst
2021-11-16 23:13:42 +01:00
xorg.libxkbfile
xorg.libxshmfence
(lib.getLib stdenv.cc.cc)
];
2018-05-09 04:14:37 +02:00
src =
if stdenv.hostPlatform.system == "x86_64-linux" then
2018-05-09 04:14:37 +02:00
fetchurl {
url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb";
2022-09-16 00:58:29 +02:00
sha256 = "sha256-Db3Xv6kNAPWqeM+vZeG7GieweaThJO0CCuwm6/v4l2s=";
2018-05-09 04:14:37 +02:00
}
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
2018-05-09 04:14:37 +02:00
in stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "mongodb-compass";
inherit version;
2018-05-09 04:14:37 +02:00
inherit src;
2020-10-25 20:38:25 +01:00
buildInputs = [ dpkg wrapGAppsHook gtk3 ];
2019-06-19 17:45:34 +02:00
dontUnpack = true;
2018-05-09 04:14:37 +02:00
buildCommand = ''
IFS=$'\n'
# The deb file contains a setuid binary, so 'dpkg -x' doesn't work here
dpkg --fsys-tarfile $src | tar --extract
mkdir -p $out
mv usr/* $out
# cp -av $out/usr/* $out
2018-05-09 04:14:37 +02:00
rm -rf $out/share/lintian
# The node_modules are bringing in non-linux files/dependencies
2018-05-09 04:14:37 +02:00
find $out -name "*.app" -exec rm -rf {} \; || true
find $out -name "*.dll" -delete
find $out -name "*.exe" -delete
2018-05-09 04:14:37 +02:00
# Otherwise it looks "suspicious"
chmod -R g-w $out
2018-05-09 04:14:37 +02:00
for file in `find $out -type f -perm /0111 -o -name \*.so\*`; do
echo "Manipulating file: $file"
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
patchelf --set-rpath ${rpath}:$out/lib/mongodb-compass "$file" || true
2018-05-09 04:14:37 +02:00
done
2019-11-18 19:26:27 +01:00
wrapGAppsHook $out/bin/mongodb-compass
2018-05-09 04:14:37 +02:00
'';
meta = with lib; {
2018-05-09 04:14:37 +02:00
description = "The GUI for MongoDB";
2021-11-16 23:13:42 +01:00
maintainers = with maintainers; [ bryanasdev000 ];
homepage = "https://github.com/mongodb-js/compass";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2021-11-16 23:13:42 +01:00
license = licenses.sspl;
2018-05-09 04:14:37 +02:00
platforms = [ "x86_64-linux" ];
};
}