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

39 lines
977 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
2017-12-20 23:22:15 +00:00
, boost, libbitcoin, libbitcoin-protocol }:
2017-01-02 19:13:09 +00:00
let
pname = "libbitcoin-client";
version = "3.5.0";
2017-01-02 19:13:09 +00:00
in stdenv.mkDerivation {
name = "${pname}-${version}";
2017-12-20 23:22:15 +00:00
src = fetchFromGitHub {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
sha256 = "0a9c00f1pfi8wczbfd1djkvr7di3iw1ynak6if910w01dkhbm6v4";
2017-01-02 19:13:09 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-12-20 23:22:15 +00:00
propagatedBuildInputs = [ libbitcoin libbitcoin-protocol ];
2017-01-02 19:13:09 +00:00
2017-12-20 23:22:15 +00:00
enableParallelBuilding = true;
2017-01-02 19:13:09 +00:00
configureFlags = [
2017-12-20 23:22:15 +00:00
"--with-tests=no"
2017-01-02 19:13:09 +00:00
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
];
meta = with lib; {
2017-01-02 19:13:09 +00:00
description = "Bitcoin client query library";
homepage = "https://github.com/libbitcoin/libbitcoin-client";
2017-01-02 19:13:09 +00:00
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ chris-martin ];
2017-12-20 23:22:15 +00:00
# AGPL with a lesser clause
2017-01-02 19:13:09 +00:00
license = licenses.agpl3;
};
}