mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
35 lines
911 B
Nix
35 lines
911 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook
|
|
, boost, libbitcoin, libbitcoin-protocol }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libbitcoin-client";
|
|
version = "3.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libbitcoin";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-5qbxixaozHFsOcBxnuGEfNJyGL8UaYCOPwPakfc0bAg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
propagatedBuildInputs = [ libbitcoin libbitcoin-protocol ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-tests=no"
|
|
"--with-boost=${boost.dev}"
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bitcoin client query library";
|
|
homepage = "https://github.com/libbitcoin/libbitcoin-client";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [ ];
|
|
|
|
# AGPL with a lesser clause
|
|
license = licenses.agpl3Plus;
|
|
};
|
|
}
|