Merge pull request #34 from jb55/nix

Add nix shell build environments
This commit is contained in:
Doug Hoyte
2023-04-20 14:24:51 -04:00
committed by GitHub

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
perl perlPackages.YAML perlPackages.TemplateToolkit
lmdb zstd secp256k1 libb2 flatbuffers zlib openssl libuv
];
}