Initial Commit

This commit is contained in:
bluepython508
2023-11-28 22:02:17 +00:00
commit 170fff4851
10 changed files with 748 additions and 0 deletions

13
shell.nix Normal file
View File

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