-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
34 lines (31 loc) · 1 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
{
description = "Provide an environment for working in this repo";
# to handle mac and linux
inputs.flake-utils.url = "github:numtide/flake-utils";
# we want to use a consistent nixpkgs across developers.
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = all@{ self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
packages =
let
# everything we want available in our development environment that isn't managed by
# npm, spago
# we do not differentiate between libraries needed for building and tools at the moment.
sharedPackages = with pkgs; [
nodejs-16_x
];
in
sharedPackages;
in {
# produce our actual shell
devShell = pkgs.mkShell rec {
# make our packages available
buildInputs = packages;
};
}
);
}