depot/third_party/nixpkgs/pkgs/tools/misc/libbitcoin/libbitcoin.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

39 lines
914 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
, boost, secp256k1 }:
let
pname = "libbitcoin";
version = "3.6.0";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1rppyp3zpb6ymwangjpblwf6qh4y3d1hczrjx8aavmrq7hznnrhq";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
propagatedBuildInputs = [ secp256k1 ];
enableParallelBuilding = true;
configureFlags = [
"--with-tests=no"
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
];
meta = with lib; {
description = "C++ library for building bitcoin applications";
homepage = "https://libbitcoin.org/";
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ chris-martin ];
# AGPL with a lesser clause
license = licenses.agpl3;
};
}