-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell-60-esr.nix
34 lines (30 loc) · 1.12 KB
/
shell-60-esr.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
with import <nixpkgs> {};
let
testeditor = pkgs.callPackage (import (builtins.fetchGit {
url = "https://github.com/test-editor/nix-packages";
})) {};
in
stdenv.mkDerivation {
name = "testeditor-angular-development";
buildInputs = [
nodejs-10_x
nodePackages.npm
nodePackages.yarn
nodePackages.jsonlint
bashInteractive
testeditor.firefox_esr
google-chrome
xvfb_run
travis
git
];
shellHook = ''
# make sure no output is done, since direnv fails with direnv: error unmarshal() base64 decoding: illegal base64 data at input byte ?
# get a symbolic link to google-chrome-stable such that the karma runner finds the chrome executable (it does not accept google-chrome-stable itself)
mkdir -p `pwd`/node_modules/.bin && ln -sf $(which google-chrome-stable) `pwd`/node_modules/.bin/google-chrome
# get angular cli installed and on the path
yarn install @angular/cli > /dev/null 2>&1
# put all linked executables in node_modules on the path
export PATH=`pwd`/node_modules/.bin:$PATH
'';
}