10 lines
115 B
Nix
10 lines
115 B
Nix
|
{ pkgs ? (import <nixpkgs> {}) }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
gnumake
|
||
|
go
|
||
|
gopls
|
||
|
];
|
||
|
}
|