mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
libbitcoin-network: init at 3.4.0
This commit is contained in:
parent
86ee454f4d
commit
23ca8e1287
38
pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
Normal file
38
pkgs/tools/misc/libbitcoin/libbitcoin-network.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||
, boost, libbitcoin, zeromq }:
|
||||
|
||||
let
|
||||
pname = "libbitcoin-network";
|
||||
version = "3.4.0";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libbitcoin";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1zlhyh5z0fla1yc6kwkx65ycwgmrcrkvzj8119wbkxy3xhzpwxpv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ libbitcoin zeromq ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bitcoin P2P Network Library";
|
||||
homepage = https://libbitcoin.org/;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ asymmetric ];
|
||||
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3;
|
||||
};
|
||||
}
|
@ -14024,6 +14024,7 @@ with pkgs;
|
||||
|
||||
libbitcoin-protocol = callPackage ../tools/misc/libbitcoin/libbitcoin-protocol.nix { };
|
||||
libbitcoin-client = callPackage ../tools/misc/libbitcoin/libbitcoin-client.nix { };
|
||||
libbitcoin-network = callPackage ../tools/misc/libbitcoin/libbitcoin-network.nix { };
|
||||
libbitcoin-explorer = callPackage ../tools/misc/libbitcoin/libbitcoin-explorer.nix { };
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user