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

72 lines
2.2 KiB
Nix
Raw Normal View History

2016-10-12 06:54:47 +00:00
{ stdenv, fetchurl, makeDesktopItem
2016-10-03 13:24:35 +00:00
, xorg, gtk2, atk, glib, pango, gdk_pixbuf, cairo, freetype, fontconfig
, gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify }:
2016-10-12 06:54:47 +00:00
let
2016-10-03 16:57:50 +00:00
bits = if stdenv.system == "x86_64-linux" then "x64"
else "ia32";
2016-10-12 06:54:47 +00:00
2017-07-05 01:42:23 +00:00
version = "0.5.10";
runtimeDeps = [
udev libnotify
];
deps = (with xorg; [
libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes
libXrender libX11 libXtst libXScrnSaver libxcb
]) ++ [
gtk2 atk glib pango gdk_pixbuf cairo freetype fontconfig dbus
gnome2.GConf nss nspr alsaLib cups expat stdenv.cc.cc
] ++ runtimeDeps;
2016-10-12 06:54:47 +00:00
myIcon = fetchurl {
url = "https://raw.githubusercontent.com/saenzramiro/rambox/9e4444e6297dd35743b79fe23f8d451a104028d5/resources/Icon.png";
sha256 = "0r00l4r5mlbgn689i3rp6ks11fgs4h2flvrlggvm2qdd974d1x0b";
};
desktopItem = makeDesktopItem rec {
name = "Rambox";
2017-01-26 08:33:47 +00:00
exec = "rambox";
2016-10-12 06:54:47 +00:00
icon = myIcon;
desktopName = name;
genericName = "Rambox messenger";
categories = "Network;";
};
in stdenv.mkDerivation rec {
2016-10-03 13:24:35 +00:00
name = "rambox-${version}";
src = fetchurl {
2016-10-03 16:57:50 +00:00
url = "https://github.com/saenzramiro/rambox/releases/download/${version}/Rambox-${version}-${bits}.tar.gz";
sha256 = if bits == "x64" then
2017-07-05 01:42:23 +00:00
"1i5jbhsfdbhr0rsb5w2pfpwjiagz47ppxk65qny3ay3lr4lbccn3" else
"1p1m6vsa9xvl3pjf3pygvllyk7j4q9vnlzmrizb8f5q30fpls25x";
2016-10-03 13:24:35 +00:00
};
2017-04-23 18:10:35 +00:00
# don't remove runtime deps
dontPatchELF = true;
2016-10-03 13:24:35 +00:00
installPhase = ''
2017-01-26 08:33:47 +00:00
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" rambox
2017-04-23 18:10:35 +00:00
patchelf --set-rpath "$out/opt/rambox:${stdenv.lib.makeLibraryPath deps}" rambox
2016-10-03 13:24:35 +00:00
2017-04-23 18:10:35 +00:00
mkdir -p $out/bin $out/opt/rambox
cp -r * $out/opt/rambox
ln -s $out/opt/rambox/rambox $out/bin
2016-10-12 06:54:47 +00:00
2017-04-23 18:10:35 +00:00
# provide desktop item
2016-10-12 06:54:47 +00:00
mkdir -p $out/share/applications
ln -s ${desktopItem}/share/applications/* $out/share/applications
2016-10-03 13:24:35 +00:00
'';
postFixup = ''
2017-04-23 18:10:35 +00:00
paxmark m $out/opt/rambox/rambox
'';
2016-10-03 13:24:35 +00:00
meta = with stdenv.lib; {
description = "Free and Open Source messaging and emailing app that combines common web applications into one";
homepage = http://rambox.pro;
license = licenses.mit;
maintainers = [ stdenv.lib.maintainers.gnidorah ];
2016-10-03 16:57:50 +00:00
platforms = ["i686-linux" "x86_64-linux"];
hydraPlatforms = [];
2016-10-03 13:24:35 +00:00
};
}