mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
robomongo has been aliased to robo3t since 2017-09-28
This commit is contained in:
parent
f141586b64
commit
19b8fd7321
|
@ -1,77 +0,0 @@
|
|||
{ lib, stdenv, fetchurl, zlib, glib, xorg, dbus, fontconfig,
|
||||
freetype, xkeyboard_config, makeDesktopItem, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "robomongo";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.robomongo.org/${version}/linux/robomongo-${version}-linux-x86_64-0786489.tar.gz";
|
||||
sha256 = "1q8ahdz3afcw002p8dl2pybzkq4srk6bnikrz216yx1gswivdcad";
|
||||
};
|
||||
|
||||
icon = fetchurl {
|
||||
url = "https://github.com/Studio3T/robomongo/raw/${version}/trash/install/linux/robomongo.png";
|
||||
sha256 = "15li8536x600kkfkb3h6mw7y0f2ljkv951pc45dpiw036vldibv2";
|
||||
};
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "robomongo";
|
||||
exec = "robomongo";
|
||||
icon = icon;
|
||||
comment = "Query GUI for mongodb";
|
||||
desktopName = "Robomongo";
|
||||
genericName = "MongoDB management tool";
|
||||
categories = "Development;IDE;mongodb;";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
ldLibraryPath = lib.makeLibraryPath [
|
||||
stdenv.cc.cc
|
||||
zlib
|
||||
glib
|
||||
xorg.libXi
|
||||
xorg.libxcb
|
||||
xorg.libXrender
|
||||
xorg.libX11
|
||||
xorg.libSM
|
||||
xorg.libICE
|
||||
xorg.libXext
|
||||
dbus
|
||||
fontconfig
|
||||
freetype
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
BASEDIR=$out/lib/robomongo
|
||||
|
||||
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.glibc}/lib/ld-linux-x86-64.so.2 $BASEDIR/bin/robomongo
|
||||
|
||||
mkdir $out/bin
|
||||
|
||||
makeWrapper $BASEDIR/bin/robomongo $out/bin/robomongo \
|
||||
--suffix LD_LIBRARY_PATH : ${ldLibraryPath} \
|
||||
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://robomongo.org/";
|
||||
description = "Query GUI for mongodb";
|
||||
platforms = lib.intersectLists lib.platforms.linux lib.platforms.x86_64;
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = [ lib.maintainers.eperuffo ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue