feat: adds shell.nix (#26)

pull/38/head
legendofmiracles 2021-04-18 15:49:56 +00:00 committed by Devin Singh
parent 00ff4d6149
commit 04875dc493
1 changed files with 4 additions and 0 deletions

4
shell.nix 100644
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ go readline ];
}