1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-07-29 17:02:27 +00:00
arikawa/shell.nix
2023-01-31 00:28:36 -08:00

12 lines
127 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
go
gopls
go-tools
];
CGO_ENABLED = "1";
}