Split builder into its own directory

This commit is contained in:
adisbladis 2020-07-23 11:19:55 +02:00
parent 2034c858bd
commit 956903170b
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7
3 changed files with 8 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
pkgs.nix-prefetch-git
pkgs.go
];
}