Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / robo3t / default.nix
blobae32aac267e17fa9facc67a30976f6ed811d70e1
1 { lib
2 , stdenv
3 , fetchurl
4 , curlWithGnuTls
5 , zlib
6 , glib
7 , xorg
8 , dbus
9 , fontconfig
10 , libGL
11 , freetype
12 , xkeyboard_config
13 , makeDesktopItem
14 , makeWrapper
17 stdenv.mkDerivation rec {
18   pname = "robo3t";
19   version = "1.4.3";
20   rev = "48f7dfd";
22   src = fetchurl {
23     url = "https://github.com/Studio3T/robomongo/releases/download/v${version}/robo3t-${version}-linux-x86_64-${rev}.tar.gz";
24     sha256 = "sha256-pH4q/O3bq45ZZn+s/12iScd0WbfkcLjK4MBdVCMXK00=";
25   };
27   icon = fetchurl {
28     url = "https://github.com/Studio3T/robomongo/raw/${rev}/install/macosx/robomongo.iconset/icon_128x128.png";
29     sha256 = "sha256-2PkUxBq2ow0wl09k8B6LJJUQ+y4GpnmoAeumKN1u5xg=";
30   };
32   desktopItem = makeDesktopItem {
33     name = "robo3t";
34     exec = "robo3t";
35     icon = icon;
36     comment = "Query GUI for mongodb";
37     desktopName = "Robo3T";
38     genericName = "MongoDB management tool";
39     categories = [ "Development" "IDE" ];
40   };
42   nativeBuildInputs = [ makeWrapper ];
44   ldLibraryPath = lib.makeLibraryPath [
45     stdenv.cc.cc
46     zlib
47     glib
48     xorg.libXi
49     xorg.libxcb
50     xorg.libXrender
51     xorg.libX11
52     xorg.libSM
53     xorg.libICE
54     xorg.libXext
55     dbus
56     fontconfig
57     freetype
58     libGL
59     curlWithGnuTls
60   ];
62   installPhase = ''
63     runHook preInstall
65     BASEDIR=$out/lib/robo3t
67     mkdir -p $BASEDIR/bin
68     cp bin/* $BASEDIR/bin
70     mkdir -p $BASEDIR/lib
71     cp -r lib/* $BASEDIR/lib
73     mkdir -p $out/share/applications
74     cp $desktopItem/share/applications/* $out/share/applications
76     mkdir -p $out/share/icons
77     cp ${icon} $out/share/icons/robomongo.png
79     patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 $BASEDIR/bin/robo3t
81     mkdir $out/bin
83     makeWrapper $BASEDIR/bin/robo3t $out/bin/robo3t \
84       --suffix LD_LIBRARY_PATH : ${ldLibraryPath} \
85       --suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb
87     runHook postInstall
88   '';
90   meta = with lib; {
91     homepage = "https://robomongo.org/";
92     description = "Query GUI for mongodb. Formerly called Robomongo";
93     platforms = [ "x86_64-linux" ];
94     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
95     license = licenses.gpl3Only;
96     maintainers = with maintainers; [ eperuffo ];
97   };