forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nixos-fix-binaries.sh
executable file
·29 lines (22 loc) · 1.26 KB
/
nixos-fix-binaries.sh
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
#!/usr/bin/env bash
# shellcheck disable=SC2230 # TODO: 'which' is not posix, should be replaced by 'command -v' builtin instead
if [ -f /etc/NIXOS ] ; then
if [ -z "$IN_NIX_SHELL" ] ; then
echo "You need to run this script in a nix-shell. Aborting"
exit 1
fi
# replace bundled binaries in node_modules
# electron-builder is trying to call chmod on the 7za binary
cp -rf "$(which 7za)" "$CURDIR"/node_modules/7zip-bin/linux/x64/7za || :
# replace bundled binaries in .cache/electron-builder with symlinks
ln -sf "$(which desktop-file-validate)" "$ELECTRON_BUILDER_CACHE"/appimage/appimage-12.0.1/linux-x64/desktop-file-validate || :
ln -sf "$(which opj_decompress)" "$ELECTRON_BUILDER_CACHE"/appimage/appimage-12.0.1/linux-x64/opj_decompress || :
ln -sf "$(which mksquashfs)" "$ELECTRON_BUILDER_CACHE"/appimage/appimage-12.0.1/linux-x64/mksquashfs || :
ln -sf "$(which makensis)" "$ELECTRON_BUILDER_CACHE"/nsis/nsis-3.0.4.1/linux/makensis || :
ln -sf "$(which osslsigncode)" "$ELECTRON_BUILDER_CACHE"/winCodeSign/winCodeSign-2.6.0/linux/osslsigncode || :
# link system browser for playwright e2e tests
ln -sf "$(which chromium)" "$PLAYWRIGHT_BROWSERS_PATH"/chromium-*/chrome-linux/chrome || :
else
echo "This is not NixOS. Aborting"
exit 1
fi