-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
45 lines (43 loc) · 1.24 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
{
inputs = {
nixpkgs-matrix = {
type = "indirect";
id = "nixpkgs-matrix-private";
};
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_20 shellcheck gitAndTools.gh ];
NIX_DONT_SET_RPATH = true;
NIX_NO_SELF_RPATH = true;
shellHook = ''
echo "Entering $(npm pkg get name)"
set -o allexport
. ./.env
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
set +v
'';
};
in {
devShells = {
default = shell { ci = false; };
ci = shell { ci = true; };
};
});
}