summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/electron
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2019-01-09 07:20:37 +0000
committerJörg Thalheim <joerg@thalheim.io>2019-01-09 07:24:17 +0000
commit66c1f82631e51a85994cb6aad3c5b5d2ef4e89f1 (patch)
tree18e08cca3ac0bbe79dc362fd3c300b7adbdf5aaa /pkgs/development/tools/electron
parent2a68c2c413fb227e8676a5d1eabe3c756bd12afe (diff)
electron_3: init at 3.1.0
electron 4 had many breaking changes in their API, breaking rambox. Since the 3.x version is still maintained, we can add an older variant.
Diffstat (limited to 'pkgs/development/tools/electron')
-rw-r--r--pkgs/development/tools/electron/3.x.nix77
-rwxr-xr-xpkgs/development/tools/electron/print-hashes.sh29
2 files changed, 106 insertions, 0 deletions
diff --git a/pkgs/development/tools/electron/3.x.nix b/pkgs/development/tools/electron/3.x.nix
new file mode 100644
index 000000000000..0fe8ab05b68c
--- /dev/null
+++ b/pkgs/development/tools/electron/3.x.nix
@@ -0,0 +1,77 @@
+{ stdenv, libXScrnSaver, makeWrapper, fetchurl, unzip, atomEnv, gtk2, at-spi2-atk }:
+
+let
+ version = "3.1.0";
+ name = "electron-${version}";
+
+ throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
+
+ meta = with stdenv.lib; {
+ description = "Cross platform desktop application shell";
+ homepage = https://github.com/electron/electron;
+ license = licenses.mit;
+ maintainers = with maintainers; [ travisbhartwell manveru ];
+ platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ];
+ };
+
+ linux = {
+ inherit name version meta;
+ src = {
+ i686-linux = fetchurl {
+ url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-ia32.zip";
+ sha256 = "09llladfj8l1vnk8fl8ad66qq4czr755fhrp5ciivpbh38zi6d3d";
+ };
+ x86_64-linux = fetchurl {
+ url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip";
+ sha256 = "0g0af1z598f8k2i5sbkzpbga49hbgzl98qgk1n4iagk08iivyfwy";
+ };
+ armv7l-linux = fetchurl {
+ url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-armv7l.zip";
+ sha256 = "1ayfcy7jm7mymmbdq08id9wpjj6cja2cyix1sw2r3m8gpn4l6ih2";
+ };
+ aarch64-linux = fetchurl {
+ url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-linux-arm64.zip";
+ sha256 = "18cqg9zb98c0rfrdg7ri26dvhjwrwzj41jn8dfra9131xc84nl3i";
+ };
+ }.${stdenv.hostPlatform.system} or throwSystem;
+
+ buildInputs = [ unzip makeWrapper ];
+
+ buildCommand = ''
+ mkdir -p $out/lib/electron $out/bin
+ unzip -d $out/lib/electron $src
+ ln -s $out/lib/electron/electron $out/bin
+
+ fixupPhase
+
+ patchelf \
+ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
+ --set-rpath "${atomEnv.libPath}:${gtk2}/lib:${at-spi2-atk}/lib:$out/lib/electron" \
+ $out/lib/electron/electron
+
+ wrapProgram $out/lib/electron/electron \
+ --prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1
+ '';
+ };
+
+ darwin = {
+ inherit name version meta;
+
+ src = fetchurl {
+ url = "https://github.com/electron/electron/releases/download/v${version}/electron-v${version}-darwin-x64.zip";
+ sha256 = "1cd1ashrcbdjlrr6yijyh2ppk8x8jdw5cm9qnx4lzk7sj9lwjbgb";
+ };
+
+ buildInputs = [ unzip ];
+
+ buildCommand = ''
+ 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
+ '';
+ };
+in
+
+ stdenv.mkDerivation (if stdenv.isDarwin then darwin else linux)
diff --git a/pkgs/development/tools/electron/print-hashes.sh b/pkgs/development/tools/electron/print-hashes.sh
new file mode 100755
index 000000000000..203e5a4dfec6
--- /dev/null
+++ b/pkgs/development/tools/electron/print-hashes.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+
+set -eu -o pipefail
+
+if [[ $# -lt 1 ]]; then
+ echo "$0: version" >&2
+ exit 1
+fi
+
+
+VERSION=$1
+
+declare -A SYSTEMS HASHES
+SYSTEMS=(
+ [i686-linux]=linux-ia32
+ [x86_64-linux]=linux-x64
+ [armv7l-linux]=linux-armv7l
+ [aarch64-linux]=linux-arm64
+ [x86_64-darwin]=darwin-x64
+)
+
+for S in "${!SYSTEMS[@]}"; do
+ HASHES["$S"]=$(nix-prefetch-url "https://github.com/electron/electron/releases/download/v${VERSION}/electron-v${VERSION}-${SYSTEMS[$S]}.zip")
+done
+
+for S in "${!HASHES[@]}"; do
+ echo "$S"
+ echo "sha256 = \"${HASHES[$S]}\";"
+done