mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 04:24:19 +00:00
52f70d95eb
*: Add shell.nix for development *: Add test workflow
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";
|
|
}
|