add shell.nix
s-ol
1 year, 3 months ago
1 changed file(s) with
10 addition(s)
and
0 deletion(s)
.
Raw diff
Collapse all
Expand all
+10
-0
shell.nix
less
more
0
{ pkgs ? import <nixpkgs> {}
1
}:
2
3
pkgs.mkShell {
4
name = "spline-env";
5
buildInputs = with pkgs; [
6
nodejs
7
yarn
8
];
9
}