Fix nix builds: go dependencies are awful

This commit is contained in:
bluepython508
2023-11-29 15:41:06 +00:00
parent 0926de2bd8
commit 259f002a99
11 changed files with 355 additions and 124 deletions

View File

@@ -1,13 +1,9 @@
{ mkShell
, mkGoEnv
, gomod2nix
, go
, gopls
}: let
goEnv = mkGoEnv { pwd = ./.; };
in mkShell {
}: mkShell {
packages = [
goEnv
go
gopls
gomod2nix
];
}