mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
914 B
Nix
40 lines
914 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, 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 pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ secp256k1 ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-tests=no"
|
|
"--with-boost=${boost.dev}"
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
];
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|