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

69 lines
1.7 KiB
Nix
Raw Normal View History

2018-12-11 12:15:33 +00:00
{ alsaLib, autoPatchelfHook, fetchurl, gtk3, libnotify
, makeDesktopItem, makeWrapper, nss, stdenv, udev, xdg_utils
, xorg
}:
2018-08-15 18:03:18 +01:00
with stdenv.lib;
let
bits = "x86_64";
version = "4.11.3";
2018-08-15 18:03:18 +01:00
desktopItem = makeDesktopItem rec {
name = "Wavebox";
2018-12-11 11:42:51 +00:00
exec = "wavebox";
2018-08-15 18:03:18 +01:00
icon = "wavebox";
desktopName = name;
genericName = name;
categories = "Network;";
};
tarball = "Wavebox_${replaceStrings ["."] ["_"] (toString version)}_linux_${bits}.tar.gz";
2019-08-13 22:52:01 +01:00
in stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "wavebox";
inherit version;
2018-08-15 18:03:18 +01:00
src = fetchurl {
url = "https://github.com/wavebox/waveboxapp/releases/download/v${version}/${tarball}";
sha256 = "0z04071lq9bfyrlg034fmvd4346swgfhxbmsnl12m7c2m2b9z784";
2018-08-15 18:03:18 +01:00
};
# don't remove runtime deps
dontPatchELF = true;
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
buildInputs = with xorg; [
2018-12-11 11:42:51 +00:00
libXdmcp libXScrnSaver libXtst
2018-08-15 18:03:18 +01:00
] ++ [
2018-12-11 11:42:51 +00:00
alsaLib gtk3 nss
2018-08-15 18:03:18 +01:00
];
runtimeDependencies = [ udev.lib libnotify ];
installPhase = ''
mkdir -p $out/bin $out/opt/wavebox
cp -r * $out/opt/wavebox
# provide desktop item and icon
mkdir -p $out/share/applications $out/share/pixmaps
ln -s ${desktopItem}/share/applications/* $out/share/applications
ln -s $out/opt/wavebox/Wavebox-linux-x64/wavebox_icon.png $out/share/pixmaps/wavebox.png
'';
postFixup = ''
makeWrapper $out/opt/wavebox/Wavebox $out/bin/wavebox \
--prefix PATH : ${xdg_utils}/bin
'';
meta = with stdenv.lib; {
description = "Wavebox messaging application";
homepage = https://wavebox.io;
license = licenses.mpl20;
maintainers = with maintainers; [ rawkode ];
platforms = ["x86_64-linux"];
hydraPlatforms = [];
};
}