mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
78 lines
2 KiB
Nix
78 lines
2 KiB
Nix
{ stdenv, fetchurl, zlib, glib, xorg, dbus, fontconfig,
|
|
freetype, xkeyboard_config, makeDesktopItem, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "robomongo-${version}";
|
|
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 = stdenv.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 = stdenv.lib.intersectLists stdenv.lib.platforms.linux stdenv.lib.platforms.x86_64;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.eperuffo ];
|
|
};
|
|
}
|