nixpkgs/pkgs/applications/misc/robo3t/default.nix

85 lines
2.1 KiB
Nix
Raw Normal View History

2021-03-10 20:02:54 +00:00
{ lib, stdenv, fetchurl, curl, zlib, glib, xorg, dbus, fontconfig, libGL,
2017-09-28 15:58:42 +00:00
freetype, xkeyboard_config, makeDesktopItem, makeWrapper }:
2021-03-10 20:02:54 +00:00
let
curlWithGnuTls = curl.override { gnutlsSupport = true; sslSupport = false; };
in
2017-09-28 15:58:42 +00:00
stdenv.mkDerivation rec {
pname = "robo3t";
2021-03-10 20:02:54 +00:00
version = "1.4.3";
rev = "48f7dfd";
2017-09-28 15:58:42 +00:00
src = fetchurl {
2021-03-10 20:02:54 +00:00
url = "https://github.com/Studio3T/robomongo/releases/download/v${version}/robo3t-${version}-linux-x86_64-${rev}.tar.gz";
sha256 = "sha256-pH4q/O3bq45ZZn+s/12iScd0WbfkcLjK4MBdVCMXK00=";
2017-09-28 15:58:42 +00:00
};
icon = fetchurl {
2021-03-10 20:02:54 +00:00
url = "https://github.com/Studio3T/robomongo/raw/${rev}/install/macosx/robomongo.iconset/icon_128x128.png";
sha256 = "sha256-2PkUxBq2ow0wl09k8B6LJJUQ+y4GpnmoAeumKN1u5xg=";
2017-09-28 15:58:42 +00:00
};
desktopItem = makeDesktopItem {
name = "robo3t";
2017-09-28 15:58:42 +00:00
exec = "robo3t";
icon = icon;
comment = "Query GUI for mongodb";
desktopName = "Robo3T";
genericName = "MongoDB management tool";
categories = "Development;IDE;";
2017-09-28 15:58:42 +00:00
};
nativeBuildInputs = [makeWrapper];
2021-01-15 05:42:41 +00:00
ldLibraryPath = lib.makeLibraryPath [
2017-09-28 15:58:42 +00:00
stdenv.cc.cc
zlib
glib
xorg.libXi
xorg.libxcb
xorg.libXrender
xorg.libX11
xorg.libSM
xorg.libICE
xorg.libXext
dbus
fontconfig
freetype
2018-05-01 16:39:03 +00:00
libGL
2021-03-10 20:02:54 +00:00
curlWithGnuTls
2017-09-28 15:58:42 +00:00
];
installPhase = ''
BASEDIR=$out/lib/robo3t
mkdir -p $BASEDIR/bin
cp bin/* $BASEDIR/bin
mkdir -p $BASEDIR/lib
cp -r lib/* $BASEDIR/lib
mkdir -p $out/share/applications
cp $desktopItem/share/applications/* $out/share/applications
mkdir -p $out/share/icons
cp ${icon} $out/share/icons/robomongo.png
patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 $BASEDIR/bin/robo3t
2017-09-28 15:58:42 +00:00
mkdir $out/bin
makeWrapper $BASEDIR/bin/robo3t $out/bin/robo3t \
--suffix LD_LIBRARY_PATH : ${ldLibraryPath} \
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb
'';
meta = {
homepage = "https://robomongo.org/";
2017-09-28 15:58:42 +00:00
description = "Query GUI for mongodb";
platforms = [ "x86_64-linux" ];
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.eperuffo ];
2017-09-28 15:58:42 +00:00
};
}