mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 04:24:19 +00:00
12 lines
127 B
Nix
12 lines
127 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
go
|
||
|
gopls
|
||
|
go-tools
|
||
|
];
|
||
|
|
||
|
CGO_ENABLED = "1";
|
||
|
}
|