3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/rambox/bare.nix

57 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchNodeModules, nodejs-10_x, ruby, sencha
2018-06-25 20:29:25 +01:00
, auth0ClientID, auth0Domain }:
2017-11-02 15:49:28 +00:00
stdenv.mkDerivation rec {
pname = "rambox-bare";
2019-06-24 17:32:37 +01:00
version = "0.6.9";
2017-11-02 15:49:28 +00:00
src = fetchFromGitHub {
2018-10-24 12:24:21 +01:00
owner = "ramboxapp";
repo = "community-edition";
2017-11-02 15:49:28 +00:00
rev = version;
2019-06-24 17:32:37 +01:00
sha256 = "1h44srl2gzkhjaazpwz1pwy4dp5x776fc685kahlvjlsfls0fvy9";
2017-11-02 15:49:28 +00:00
};
nativeBuildInputs = [ nodejs-10_x ruby sencha ];
2017-11-02 15:49:28 +00:00
node_modules = fetchNodeModules {
inherit src;
nodejs = nodejs-10_x;
2019-05-02 15:41:59 +01:00
sha256 = "0qsgr8cq81yismal5sqr02skakqpynwwzk5s98dr5bg91y361fgy";
2017-11-02 15:49:28 +00:00
};
2018-06-25 20:29:25 +01:00
patches = [ ./isDev.patch ];
2017-11-02 15:49:28 +00:00
configurePhase = ''
echo 'var auth0Cfg = { clientID: "${auth0ClientID}", domain: "${auth0Domain}" };' > env.js
ln -s ${node_modules} node_modules
'';
buildPhase = ''
mkdir ../rambox-build
npm run sencha:compile:build
'';
installPhase = ''
mv ../rambox-build/ $out
# https://github.com/saenzramiro/rambox/issues/1281
echo '{"name": "rambox", "version": "${version}", "main": "electron/main.js"}' > $out/package.json
# https://github.com/saenzramiro/rambox/issues/1282
cp --parents ext/packages/ext-locale/build/ext-locale-*.js $out
# Symbolic link causes `Uncaught Error: Cannot find module 'immutable'`
cp -r ${node_modules} $out/node_modules
'';
meta = with stdenv.lib; {
description = "Messaging and emailing app that combines common web applications into one";
homepage = http://rambox.pro;
license = licenses.gpl3;
maintainers = with maintainers; [ gnidorah ];
platforms = platforms.linux;
};
}