nix: add trivial shell.nix for development

pull/474/head
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
1 changed files with 8 additions and 0 deletions

8
shell.nix 100644
View File

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