adds shell.nix

pull/26/head
legendofmiracles 2021-04-07 15:27:32 +02:00
parent bbfe28dbae
commit b28315dc3e
No known key found for this signature in database
GPG Key ID: 19B082B3DEFE5451
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 ];
}