gitle/shell.nix

7 lines
116 B
Nix
Raw Normal View History

2022-06-21 11:10:38 -06:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
go_1_18
];
}