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

40 lines
914 B
Nix
Raw Normal View History

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