Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathflake.nix
More file actions
Latest commit
34 lines (31 loc) · 1 KB
/
Copy pathflake.nix
File metadata and controls
34 lines (31 loc) · 1 KB
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=importnixpkgs{
inheritsystem;
};
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=withpkgs;[
nodejs-16_x
];
in
sharedPackages;
in{
# produce our actual shell
devShell=pkgs.mkShellrec{
# make our packages available
buildInputs=packages;
};
}
);
}