tvl-depot/go/shell.nix
William Carroll 2d3428c809 Practice concurrency in golang
Uploading some snippets I created to help me better understand concurrency in
general and specifically concurrency in golang.
2020-02-10 10:06:40 +00:00

9 lines
124 B
Nix

{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
buildInputs = [
pkgs.go
pkgs.goimports
pkgs.godef
];
}