2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
2017-12-20 17:51:46 +00:00
|
|
|
, boost, libbitcoin, secp256k1, zeromq }:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "libbitcoin-protocol";
|
2018-03-17 03:57:30 +00:00
|
|
|
version = "3.5.0";
|
2017-12-20 17:51:46 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libbitcoin";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2018-03-17 03:57:30 +00:00
|
|
|
sha256 = "1ln9r04hlnc7qmv17rakyhrnzw1a541pg5jc1sw3ccn90a5x6cfv";
|
2017-12-20 17:51:46 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-12-20 17:51:46 +00:00
|
|
|
buildInputs = [ libbitcoin secp256k1 ];
|
|
|
|
propagatedBuildInputs = [ zeromq ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-tests=no"
|
|
|
|
"--with-boost=${boost.dev}"
|
|
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-20 17:51:46 +00:00
|
|
|
description = "Bitcoin Blockchain Query Protocol";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://libbitcoin.org/";
|
2017-12-20 17:51:46 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ asymmetric ];
|
|
|
|
|
|
|
|
# AGPL with a lesser clause
|
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|