devShells: base go shell
This commit is contained in:
parent
567879339a
commit
c14b4d0774
@ -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
4
devShells/go.nix
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [ go gopls gotools go-tools golangci-lint gnumake ];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user