10 lines
143 B
Nix
10 lines
143 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
with pkgs;
|
||
|
mkShell {
|
||
|
BuildInputs = [
|
||
|
gcc
|
||
|
];
|
||
|
nativeBuildInputs = [
|
||
|
go_1_19
|
||
|
];
|
||
|
}
|