7c1e2fb228
Signed-off-by: Tobias Erbshäußer <tobias@tesoft.dev>
9 lines
122 B
Nix
9 lines
122 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
go
|
|
nodejs
|
|
];
|
|
}
|
|
|