2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
2017-12-20 16:41:31 +00:00
|
|
|
, boost, secp256k1 }:
|
2017-01-02 19:12:37 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "libbitcoin";
|
2019-08-19 17:13:24 +01:00
|
|
|
version = "3.6.0";
|
2017-01-02 19:12:37 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2017-12-20 16:41:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2019-08-19 17:13:24 +01:00
|
|
|
sha256 = "1rppyp3zpb6ymwangjpblwf6qh4y3d1hczrjx8aavmrq7hznnrhq";
|
2017-01-02 19:12:37 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-01-02 19:12:37 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ secp256k1 ];
|
|
|
|
|
2017-12-20 16:41:31 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-02 19:12:37 +00:00
|
|
|
configureFlags = [
|
2017-12-20 16:41:31 +00:00
|
|
|
"--with-tests=no"
|
2017-01-02 19:12:37 +00:00
|
|
|
"--with-boost=${boost.dev}"
|
|
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++ library for building bitcoin applications";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://libbitcoin.org/";
|
2017-01-02 19:12:37 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ chris-martin ];
|
|
|
|
|
2017-12-20 16:41:31 +00:00
|
|
|
# AGPL with a lesser clause
|
2017-01-02 19:12:37 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|