about summary refs log tree commit diff
path: root/pkgs/tools/misc/libbitcoin/libbitcoin-client.nix
blob: 1f45626855f5a860af1b1048b97ba0905106fa77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, lib, fetchurl, pkgconfig, autoreconfHook
, boost, libsodium, czmqpp, libbitcoin }:

let
  pname = "libbitcoin-client";
  version = "2.2.0";

in stdenv.mkDerivation {
  name = "${pname}-${version}";

  src = fetchurl {
    url = "https://github.com/libbitcoin/libbitcoin-client/archive/v${version}.tar.gz";
    sha256 = "1g79hl6jmf5dam7vq19h4dgdj7gcn19fa7q78vn573mg2rdyal53";
  };

  buildInputs = [ autoreconfHook pkgconfig ];

  propagatedBuildInputs = [ libsodium czmqpp libbitcoin ];

  configureFlags = [
    "--with-boost=${boost.dev}"
    "--with-boost-libdir=${boost.out}/lib"
    "--with-bash-completiondir=$out/share/bash-completion/completions"
  ];

  meta = with stdenv.lib; {
    description = "Bitcoin client query library";
    homepage = https://github.com/libbitcoin/libbitcoin-client;
    platforms = platforms.linux ++ platforms.darwin;
    maintainers = with maintainers; [ chris-martin ];

    # https://wiki.unsystem.net/en/index.php/Libbitcoin/License
    # AGPL with an additional clause
    license = licenses.agpl3;
  };
}