-
-
Notifications
You must be signed in to change notification settings - Fork 266
/
Copy pathshell.nix
65 lines (62 loc) · 2.49 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# pinned to nixos-24.05 on commit https://github.com/NixOS/nixpkgs/commit/c6ce5bd4ab657df958ebd6f38723f81c5546a661
with import
(builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/c6ce5bd4ab657df958ebd6f38723f81c5546a661.tar.gz";
sha256 = "0i5z7b087kr2hnkgs17d36c54arjbgwlwyxw1ibh03d1k1xfcyf2";
})
{ };
let
# unstable packages
electron = electron_32;
nodejs = nodejs_22;
# use older gcc. 10.2.0 with glibc 2.32 for node_modules bindings.
# electron-builder is packing the app with glibc 2.32, bindings should not be compiled with newer version.
gccPkgs = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/a78ed5cbdd5427c30ca02a47ce6cccc9b7d17de4.tar.gz";
sha256 = "0l5b1libi46sc3ly7a5vj04098f63aj5jynxpz44sb396nncnivl";
}) {};
in
stdenvNoCC.mkDerivation {
name = "trezor-suite-dev";
buildInputs = [
bash
git
git-lfs
gnupg
mdbook
xorg.xhost # for e2e tests running on localhost
docker # for e2e tests running on localhost
docker-compose # for e2e tests running on localhost
nodejs
(yarn.override {
nodejs = null; # use input nodejs
})
jre
p7zip
electron
pkg-config
pixman cairo giflib libjpeg libpng librsvg pango # build dependencies for node-canvas
shellcheck
] ++ lib.optionals stdenv.isLinux [
appimagekit nsis openjpeg osslsigncode p7zip squashfsTools gccPkgs.gcc # binaries used by node_module: electron-builder
udev # used by node_module: usb
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Cocoa
CoreServices
]);
# used by patchelf for WabiSabiClientLibrary in dev mode (see webpack nixos-interpreter-plugin)
NIX_PATCHELF_LIBRARY_PATH = "${openssl.out}/lib:${zlib}/lib:${gcc.cc.lib}/lib";
NIX_CC="${gcc}";
shellHook = ''
export NODE_OPTIONS=--max_old_space_size=4096
export CURDIR="$(pwd)"
export PATH="$PATH:$CURDIR/node_modules/.bin"
export ELECTRON_BUILDER_CACHE="$CURDIR/.cache/electron-builder"
'' + lib.optionalString stdenv.isDarwin ''
export ELECTRON_OVERRIDE_DIST_PATH="${electron}/Applications/"
'' + lib.optionalString stdenv.isLinux ''
export ELECTRON_OVERRIDE_DIST_PATH="${electron}/bin/"
export npm_config_build_from_source=true # tell yarn to not download binaries, but build from source
export PLAYWRIGHT_BROWSERS_PATH="$CURDIR/.cache/ms-playwright"
'';
}