forked from mirrors/nixpkgs
11dd4ccf9d
https://github.com/ramboxapp/community-edition/releases/tag/0.7.3 https://github.com/ramboxapp/community-edition/releases/tag/0.7.2 https://github.com/ramboxapp/community-edition/releases/tag/0.7.1 https://github.com/ramboxapp/community-edition/releases/tag/0.7.0
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, fetchNodeModules, nodejs-10_x, ruby, sencha
|
|
, auth0ClientID, auth0Domain }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rambox-bare";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ramboxapp";
|
|
repo = "community-edition";
|
|
rev = version;
|
|
sha256 = "03pwzyij2i5m23qzhyqdcipixmqj46qbjmq626swwqy03a0p91qv";
|
|
};
|
|
|
|
nativeBuildInputs = [ nodejs-10_x ruby sencha ];
|
|
|
|
node_modules = fetchNodeModules {
|
|
inherit src;
|
|
|
|
nodejs = nodejs-10_x;
|
|
sha256 = "05vb0r0q3ckg2g87fsm22j0cbfvk81q5z43zwmrzh3pb3zh54xj1";
|
|
};
|
|
|
|
patches = [ ./isDev.patch ];
|
|
|
|
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;
|
|
};
|
|
}
|