bitcoin-tx-verify 0.1.2

Minimal bitcoin transaction verifier with OP_CAT support
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    autoconf
    automake
    boost
    db4
    gcc
    libevent
    libtool
    openssl
    pkg-config
  ];
  shellHook =
    ''
      export BOOST_LIB_DIR="${pkgs.boost.out}/lib"
    '';
}