11 lines
133 B
Nix
11 lines
133 B
Nix
|
{ pkgs ? import <nixpkgs> {}, ... }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
nodejs
|
||
|
python3
|
||
|
go
|
||
|
goimports
|
||
|
];
|
||
|
}
|