devShells: base go shell

This commit is contained in:
L-Nafaryus 2024-01-10 10:54:51 +05:00
parent 567879339a
commit c14b4d0774
No known key found for this signature in database
GPG Key ID: C76D8DCD2727DBB7
2 changed files with 6 additions and 0 deletions

View File

@ -17,4 +17,6 @@ in forAllSystems(system: let
openfoam = import ./openfoam.nix { inherit pkgs bpkgs; }; openfoam = import ./openfoam.nix { inherit pkgs bpkgs; };
rust = import ./rust.nix { inherit pkgs cranelib; }; rust = import ./rust.nix { inherit pkgs cranelib; };
go = import ./go.nix { inherit pkgs; };
}) })

4
devShells/go.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [ go gopls gotools go-tools golangci-lint gnumake ];
}