depot/pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

35 lines
881 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
, boost, libbitcoin, zeromq }:
stdenv.mkDerivation rec {
pname = "libbitcoin-network";
version = "3.8.0";
src = fetchFromGitHub {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
hash = "sha256-zDT92bvA779mzTodpKugCoxapB6vY2jCMSGZEkJLTXQ=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libbitcoin zeromq ];
enableParallelBuilding = true;
configureFlags = [
"--with-tests=no"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
];
meta = with lib; {
description = "Bitcoin P2P Network Library";
homepage = "https://libbitcoin.info/";
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ asymmetric ];
# AGPL with a lesser clause
license = licenses.agpl3Plus;
};
}