6 lines
124 B
Nix
6 lines
124 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [ go nodejs gcc pkg-config ];
|
|
CGO_ENABLED = "1";
|
|
}
|