mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
ac19072d7b
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/libbitcoin-network/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.5.0 with grep in /nix/store/mmrl1lvrc1p8ypclg2gf36n26vhyai04-libbitcoin-network-3.5.0 - directory tree listing: https://gist.github.com/05b992f0e86e04ef0e068c378b453f8b
39 lines
918 B
Nix
39 lines
918 B
Nix
{ stdenv, lib, fetchFromGitHub, pkgconfig, autoreconfHook
|
|
, boost, libbitcoin, zeromq }:
|
|
|
|
let
|
|
pname = "libbitcoin-network";
|
|
version = "3.5.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libbitcoin";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0vqg3i40kwmbys4lyp82xvg2nx3ik4qhc66gcm8k66a86wpj9ji6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|