2018-12-24 15:56:28 +00:00
|
|
|
{ stdenv, libXScrnSaver, makeWrapper, fetchurl, unzip, atomEnv, libuuid, at-spi2-atk }:
|
2016-04-04 16:11:41 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
let
|
2019-03-04 01:52:08 +00:00
|
|
|
version = "4.0.6";
|
2016-10-18 01:18:10 +00:00
|
|
|
name = "electron-${version}";
|
2014-11-13 05:39:58 +00:00
|
|
|
|
2018-08-20 19:11:29 +00:00
|
|
|
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
2017-12-19 11:48:41 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cross platform desktop application shell";
|
|
|
|
homepage = https://github.com/electron/electron;
|
|
|
|
license = licenses.mit;
|
2018-02-22 20:03:08 +00:00
|
|
|
maintainers = with maintainers; [ travisbhartwell manveru ];
|
|
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ];
|
2014-11-13 05:39:58 +00:00
|
|
|
};
|
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
linux = {
|
|
|
|
inherit name version meta;
|
2014-11-13 05:39:58 +00:00
|
|
|
|
2017-12-07 05:40:00 +00:00
|
|
|
src = {
|
|
|
|
i686-linux = fetchurl {
|
|
|
|
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-ia32.zip";
|
2019-03-04 01:52:08 +00:00
|
|
|
sha256 = "1ffv4wlj827wyq7y2hfaz2d0fapqr2r9likb90ayzh91vmkc8c2y";
|
2017-12-07 05:40:00 +00:00
|
|
|
};
|
|
|
|
x86_64-linux = fetchurl {
|
|
|
|
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip";
|
2019-03-04 01:52:08 +00:00
|
|
|
sha256 = "01b063jabx7fglh63dk7nh21xxadwxrrvavcwznpw6jhid48g2yz";
|
2017-12-07 05:40:00 +00:00
|
|
|
};
|
|
|
|
armv7l-linux = fetchurl {
|
|
|
|
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-armv7l.zip";
|
2019-03-04 01:52:08 +00:00
|
|
|
sha256 = "18dsb3pyj9gfn8xyzhblx7nidgp39pfqs1ml07nxfkf1bjdh4c4w";
|
2018-02-22 20:03:08 +00:00
|
|
|
};
|
|
|
|
aarch64-linux = fetchurl {
|
|
|
|
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-arm64.zip";
|
2019-03-04 01:52:08 +00:00
|
|
|
sha256 = "0dx6bzj0laygqkyl8ngbh0yfzyc5mxr3fxlqb867cza9sz5hh95l";
|
2017-12-07 05:40:00 +00:00
|
|
|
};
|
2018-08-20 19:11:29 +00:00
|
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
2014-11-13 05:39:58 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
buildInputs = [ unzip makeWrapper ];
|
2016-04-22 14:44:30 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/lib/electron $out/bin
|
|
|
|
unzip -d $out/lib/electron $src
|
|
|
|
ln -s $out/lib/electron/electron $out/bin
|
2016-06-08 18:31:36 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
fixupPhase
|
2014-11-13 05:39:58 +00:00
|
|
|
|
2016-10-18 01:18:10 +00:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2018-12-24 15:56:28 +00:00
|
|
|
--set-rpath "${atomEnv.libPath}:${stdenv.lib.makeLibraryPath [ libuuid at-spi2-atk ]}:$out/lib/electron" \
|
2016-10-18 01:18:10 +00:00
|
|
|
$out/lib/electron/electron
|
|
|
|
|
|
|
|
wrapProgram $out/lib/electron/electron \
|
|
|
|
--prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1
|
|
|
|
'';
|
2014-11-13 05:39:58 +00:00
|
|
|
};
|
2016-10-18 01:18:10 +00:00
|
|
|
|
|
|
|
darwin = {
|
|
|
|
inherit name version meta;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-x64.zip";
|
2019-03-04 01:52:08 +00:00
|
|
|
sha256 = "0r1yn5lz808xdwp29g4kmlm5v0i1fsdxd4ph537gyz3sfn30dgq9";
|
2016-10-18 01:18:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
buildCommand = ''
|
2017-12-07 05:40:00 +00:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
unzip $src
|
|
|
|
mv Electron.app $out/Applications
|
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $out/Applications/Electron.app/Contents/MacOs/Electron $out/bin/electron
|
2016-10-18 01:18:10 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation (if stdenv.isDarwin then darwin else linux)
|