nixpkgs/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix

39 lines
915 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
2017-12-20 23:57:25 +00:00
, boost, libbitcoin, zeromq }:
let
pname = "libbitcoin-network";
version = "3.5.0";
2017-12-20 23:57:25 +00:00
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
sha256 = "0vqg3i40kwmbys4lyp82xvg2nx3ik4qhc66gcm8k66a86wpj9ji6";
2017-12-20 23:57:25 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-12-20 23:57:25 +00:00
buildInputs = [ libbitcoin zeromq ];
enableParallelBuilding = true;
configureFlags = [
"--with-tests=no"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
];
meta = with lib; {
2017-12-20 23:57:25 +00:00
description = "Bitcoin P2P Network Library";
homepage = "https://libbitcoin.org/";
2017-12-20 23:57:25 +00:00
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ asymmetric ];
# AGPL with a lesser clause
license = licenses.agpl3;
};
}