Files
e2b-dev--e2b/csb.nix
T
2023-03-17 14:43:38 +00:00

13 lines
214 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "csb";
buildInputs = [
poetry
jdk11_headless
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}