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

102 lines
2.2 KiB
Nix
Raw Normal View History

2021-06-21 00:38:12 +00:00
{ lib
, stdenv
, fetchurl
, curl
, zlib
, glib
, xorg
, dbus
, fontconfig
, libGL
, freetype
, xkeyboard_config
, makeDesktopItem
, makeWrapper
}:
2017-09-28 15:58:42 +00:00
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
};
2021-06-21 00:38:12 +00:00
nativeBuildInputs = [ makeWrapper ];
2017-09-28 15:58:42 +00:00
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 = ''
2021-06-21 00:38:12 +00:00
runHook preInstall
2017-09-28 15:58:42 +00:00
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
2021-06-21 00:38:12 +00:00
runHook postInstall
2017-09-28 15:58:42 +00:00
'';
2021-06-21 00:38:12 +00:00
meta = with lib; {
homepage = "https://robomongo.org/";
2021-06-21 00:38:12 +00:00
description = "Query GUI for mongodb. Formerly called Robomongo";
platforms = [ "x86_64-linux" ];
2021-06-21 00:38:12 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ eperuffo ];
2017-09-28 15:58:42 +00:00
};
}