2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
2017-12-21 01:25:42 +01:00
|
|
|
, boost, libbitcoin-client, libbitcoin-network }:
|
2017-01-02 20:13:33 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "libbitcoin-explorer";
|
2018-03-17 04:39:31 +01:00
|
|
|
version = "3.5.0";
|
2017-01-02 20:13:33 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2017-12-21 01:25:42 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libbitcoin";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2018-03-17 04:39:31 +01:00
|
|
|
sha256 = "033nrdzrha4kypxk4biixjsbjd16r4m2mjvpid4gdj5hzbbj1p93";
|
2017-01-02 20:13:33 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-12-21 01:25:42 +01:00
|
|
|
buildInputs = [ libbitcoin-client libbitcoin-network ];
|
2017-01-02 20:13:33 +01:00
|
|
|
|
2017-12-21 01:25:42 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-01-02 20:13:33 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
2017-12-21 01:25:42 +01:00
|
|
|
"--with-tests=no"
|
2017-01-02 20:13:33 +01:00
|
|
|
"--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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/libbitcoin/libbitcoin-explorer";
|
2017-01-02 20:13:33 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-12-21 01:25:42 +01:00
|
|
|
maintainers = with maintainers; [ chris-martin asymmetric ];
|
2017-01-02 20:13:33 +01:00
|
|
|
|
2017-12-21 01:25:42 +01:00
|
|
|
# AGPL with a lesser clause
|
2017-01-02 20:13:33 +01:00
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|