nixpkgs/pkgs/applications/networking/instant-messengers/hipchat/default.nix

98 lines
2.4 KiB
Nix
Raw Normal View History

2016-03-17 11:31:06 +00:00
{ stdenv, fetchurl, xorg, freetype, fontconfig, openssl, glib, nss, nspr, expat
, alsaLib, dbus, zlib, libxml2, libxslt, makeWrapper, xkeyboard_config, systemd
, mesa_noglu, xcbutilkeysyms, xdg_utils, libtool }:
let
2014-05-26 22:48:30 +00:00
2018-02-08 14:01:40 +00:00
version = "4.30.3.1670";
rpath = stdenv.lib.makeLibraryPath [
xdg_utils
xorg.libXext
xorg.libSM
xorg.libICE
xorg.libX11
2016-03-17 11:31:06 +00:00
xorg.libXrandr
xorg.libXdamage
xorg.libXrender
xorg.libXfixes
xorg.libXcomposite
2016-03-17 11:31:06 +00:00
xorg.libXcursor
xorg.libxcb
xorg.libXi
2016-03-17 11:31:06 +00:00
xorg.libXScrnSaver
xorg.libXtst
freetype
fontconfig
openssl
2014-05-26 22:48:30 +00:00
glib
2016-03-17 11:31:06 +00:00
nss
nspr
2014-05-26 22:48:30 +00:00
dbus
alsaLib
zlib
libtool
2014-05-26 22:48:30 +00:00
libxml2
libxslt
2016-03-17 11:31:06 +00:00
expat
2014-09-15 14:01:32 +00:00
xcbutilkeysyms
2016-03-17 11:31:06 +00:00
systemd
mesa_noglu
2016-04-30 20:56:43 +00:00
] + ":${stdenv.cc.cc.lib}/lib64";
2014-05-26 22:48:30 +00:00
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
2016-03-17 11:31:06 +00:00
url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
2018-02-08 14:01:40 +00:00
sha256 = "0alqzay6bvi7ybrrdk5r0xkg4sx6qjsqbgmr16bkqxncxhb215ay";
2014-05-26 22:48:30 +00:00
}
else
throw "HipChat is not supported on ${stdenv.system}";
in
stdenv.mkDerivation {
name = "hipchat-${version}";
2014-05-26 22:48:30 +00:00
inherit src;
buildInputs = [ makeWrapper ];
buildCommand = ''
2016-03-17 11:31:06 +00:00
ar x $src
tar xfvz data.tar.gz
2014-05-26 22:48:30 +00:00
2016-03-17 11:31:06 +00:00
mkdir -p $out/libexec/hipchat
d=$out/libexec/hipchat/lib
2016-03-17 11:31:06 +00:00
mv opt/HipChat4/* $out/libexec/hipchat/
mv usr/share $out
2014-05-26 22:48:30 +00:00
for file in $(find $d -type f); do
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $file || true
2016-03-17 11:31:06 +00:00
patchelf --set-rpath ${rpath}:$out/libexec/hipchat/lib:\$ORIGIN $file || true
done
2014-05-26 22:48:30 +00:00
2016-04-05 00:02:42 +00:00
patchShebangs $d/linuxbrowserlaunch.sh
2016-03-17 11:31:06 +00:00
substituteInPlace $out/share/applications/hipchat4.desktop \
--replace /opt/HipChat4/bin/HipChat4 $out/bin/hipchat
2014-05-26 22:48:30 +00:00
2016-03-17 11:31:06 +00:00
makeWrapper $d/HipChat.bin $out/bin/hipchat \
--run 'export HIPCHAT_LD_LIBRARY_PATH=$LD_LIBRARY_PATH' \
--run 'export HIPCHAT_QT_PLUGIN_PATH=$QT_PLUGIN_PATH' \
2016-03-17 11:31:06 +00:00
--set QT_XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb \
--set QTWEBENGINEPROCESS_PATH $d/QtWebEngineProcess
2014-05-26 22:48:30 +00:00
2016-03-17 11:31:06 +00:00
makeWrapper $d/QtWebEngineProcess.bin $d/QtWebEngineProcess \
--set QT_PLUGIN_PATH "$d/plugins"
'';
2015-05-18 11:15:50 +00:00
meta = with stdenv.lib; {
description = "Desktop client for HipChat services";
homepage = http://www.hipchat.com;
2015-05-18 11:15:50 +00:00
license = licenses.unfree;
2016-03-17 11:31:06 +00:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ jgeerds puffnfresh ];
};
}