nixpkgs/pkgs/tools/misc/libbitcoin/libbitcoin-explorer.nix
Ryan Mulligan b9870fed88 libbitcoin-explorer: 3.4.0 -> 3.5.0
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/j07vd1p6h4c5fxyiskqqvfvi902vvsn2-libbitcoin-explorer-3.5.0/bin/bx help` got 0 exit code
- found 3.5.0 with grep in /nix/store/j07vd1p6h4c5fxyiskqqvfvi902vvsn2-libbitcoin-explorer-3.5.0
- directory tree listing: https://gist.github.com/672afbcda72ddef99aebfc49a81edc45
2018-03-23 21:01:23 -05:00

40 lines
1 KiB
Nix

{ stdenv, lib, fetchFromGitHub, pkgconfig, autoreconfHook
, boost, libbitcoin-client, libbitcoin-network }:
let
pname = "libbitcoin-explorer";
version = "3.5.0";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
sha256 = "033nrdzrha4kypxk4biixjsbjd16r4m2mjvpid4gdj5hzbbj1p93";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libbitcoin-client libbitcoin-network ];
enableParallelBuilding = true;
configureFlags = [
"--with-tests=no"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
"--with-bash-completiondir=$out/share/bash-completion/completions"
];
meta = with stdenv.lib; {
description = "Bitcoin command line tool";
homepage = https://github.com/libbitcoin/libbitcoin-explorer;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ chris-martin asymmetric ];
# AGPL with a lesser clause
license = licenses.agpl3;
};
}