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

40 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
2017-12-21 00:25:42 +00:00
, boost, libbitcoin-client, libbitcoin-network }:
2017-01-02 19:13:33 +00:00
let
pname = "libbitcoin-explorer";
version = "3.5.0";
2017-01-02 19:13:33 +00:00
in stdenv.mkDerivation {
name = "${pname}-${version}";
2017-12-21 00:25:42 +00:00
src = fetchFromGitHub {
owner = "libbitcoin";
repo = pname;
rev = "v${version}";
sha256 = "033nrdzrha4kypxk4biixjsbjd16r4m2mjvpid4gdj5hzbbj1p93";
2017-01-02 19:13:33 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-12-21 00:25:42 +00:00
buildInputs = [ libbitcoin-client libbitcoin-network ];
2017-01-02 19:13:33 +00:00
2017-12-21 00:25:42 +00:00
enableParallelBuilding = true;
2017-01-02 19:13:33 +00:00
configureFlags = [
2017-12-21 00:25:42 +00:00
"--with-tests=no"
2017-01-02 19:13:33 +00:00
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.out}/lib"
"--with-bash-completiondir=$out/share/bash-completion/completions"
];
meta = with stdenv.lib; {
description = "Bitcoin command line tool";
homepage = https://github.com/libbitcoin/libbitcoin-explorer;
platforms = platforms.linux ++ platforms.darwin;
2017-12-21 00:25:42 +00:00
maintainers = with maintainers; [ chris-martin asymmetric ];
2017-01-02 19:13:33 +00:00
2017-12-21 00:25:42 +00:00
# AGPL with a lesser clause
2017-01-02 19:13:33 +00:00
license = licenses.agpl3;
};
}