1
0

Add shell.nix

This commit is contained in:
dump_stack() 2023-01-19 16:59:25 +00:00
parent 05ae073fe6
commit cc26ff8626
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs; mkShell {
packages = [ go gcc qemu ];
}