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

53 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, newScope, makeWrapper
, electron, xdg_utils, makeDesktopItem
, auth0ClientID ? "0spuNKfIGeLAQ_Iki9t3fGxbfJl3k8SU"
2018-06-25 19:29:25 +00:00
, auth0Domain ? "nixpkgs.auth0.com" }:
2016-10-03 13:24:35 +00:00
2016-10-12 06:54:47 +00:00
let
2017-11-02 15:49:28 +00:00
callPackage = newScope self;
self = {
fetchNodeModules = callPackage ./fetchNodeModules.nix {};
rambox-bare = callPackage ./bare.nix {
2018-06-25 19:29:25 +00:00
inherit auth0ClientID auth0Domain;
};
2017-11-02 15:49:28 +00:00
sencha = callPackage ./sencha {};
2016-10-03 13:24:35 +00:00
};
2017-11-08 19:57:23 +00:00
desktopItem = makeDesktopItem rec {
name = "Rambox";
exec = "rambox";
icon = "${self.rambox-bare}/resources/Icon.png";
desktopName = name;
genericName = "Rambox messenger";
categories = "Network;";
};
2017-11-02 15:49:28 +00:00
in
2016-10-03 13:24:35 +00:00
2017-11-02 15:49:28 +00:00
with self;
2016-10-03 13:24:35 +00:00
2017-11-02 15:49:28 +00:00
stdenv.mkDerivation {
name = "rambox-${rambox-bare.version}";
2017-09-07 18:10:50 +00:00
nativeBuildInputs = [ makeWrapper ];
2017-09-07 18:10:50 +00:00
2019-06-19 15:45:34 +00:00
dontUnpack = true;
2016-10-03 13:24:35 +00:00
dontWrapGApps = true; # we only want $gappsWrapperArgs here
2017-11-02 15:49:28 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out/share/applications
ln -s ${desktopItem}/share/applications/* $out/share/applications
runHook postInstall
'';
postFixup = ''
makeWrapper ${electron}/bin/electron $out/bin/rambox \
2017-11-02 15:49:28 +00:00
--add-flags "${rambox-bare} --without-update" \
--prefix PATH : ${xdg_utils}/bin
'';
2020-01-15 18:16:59 +00:00
meta = rambox-bare.meta // {
platforms = [ "i686-linux" "x86_64-linux" ];
2020-01-15 18:16:59 +00:00
};
2016-10-03 13:24:35 +00:00
}