-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
48 lines (46 loc) · 1.46 KB
/
flake.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
{
inputs = {
nixpkgs-matrix = {
type = "indirect";
id = "nixpkgs-matrix";
};
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs-matrix, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs-matrix.legacyPackages.${system};
shell = { ci ? false }:
with pkgs;
mkShell {
nativeBuildInputs = [ nodejs shellcheck patchelf gitAndTools.gh ];
shellHook = ''
echo "Entering $(npm pkg get name)"
set -o allexport
. <(pk secrets env Polykey-Docs:.)
set +o allexport
set -v
${lib.optionalString ci ''
set -o errexit
set -o nounset
set -o pipefail
shopt -s inherit_errexit
''}
mkdir --parents "$(pwd)/tmp"
export PATH="$(pwd)/dist/bin:$(npm root)/.bin:$PATH"
npm install --ignore-scripts
if [ -f 'node_modules/@cloudflare/workerd-linux-64/bin/workerd' ]; then
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
node_modules/@cloudflare/workerd-linux-64/bin/workerd
fi
set +v
'';
};
in {
devShells = {
default = shell { ci = false; };
ci = shell { ci = true; };
};
});
}