16 lines
206 B
Nix
16 lines
206 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}: pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
# api/
|
|
nodejs
|
|
go
|
|
gopls
|
|
];
|
|
|
|
shellHook = ''
|
|
if [ -f init.sh ]; then
|
|
source init.sh
|
|
fi
|
|
'';
|
|
}
|