nix: add trivial shell.nix for development

This commit is contained in:
Pavol Rusnak 2020-08-20 17:52:58 +02:00
parent e66fa79383
commit 0f4eadd935
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "blockbook-dev";
buildInputs = [
go
];
}