mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libbitcoin: 2.11.0 -> 3.4.0
This commit is contained in:
parent
61da89bc8a
commit
5b5e98b159
1 changed files with 12 additions and 9 deletions
|
@ -1,24 +1,28 @@
|
|||
{ stdenv, lib, fetchurl, pkgconfig, autoreconfHook
|
||||
, boost, libsodium, czmqpp, secp256k1 }:
|
||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||
, boost, secp256k1 }:
|
||||
|
||||
let
|
||||
pname = "libbitcoin";
|
||||
version = "2.11.0";
|
||||
version = "3.4.0";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/libbitcoin/libbitcoin/archive/v${version}.tar.gz";
|
||||
sha256 = "1lpdjm13kgs4fbp579bwfvws8yf9mnr5dw3ph8zxg2gf110h85sy";
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1h6h7cxbwkdk8bzbkfvnrrdzajw1d4lr8wqs66is735bksh6gk1y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
buildInputs = [ ];
|
||||
|
||||
propagatedBuildInputs = [ secp256k1 ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [
|
||||
"--with-tests=no"
|
||||
"--with-boost=${boost.dev}"
|
||||
"--with-boost-libdir=${boost.out}/lib"
|
||||
];
|
||||
|
@ -29,8 +33,7 @@ in stdenv.mkDerivation {
|
|||
platforms = platforms.linux ++ platforms.darwin;
|
||||
maintainers = with maintainers; [ chris-martin ];
|
||||
|
||||
# https://wiki.unsystem.net/en/index.php/Libbitcoin/License
|
||||
# AGPL with an additional clause
|
||||
# AGPL with a lesser clause
|
||||
license = licenses.agpl3;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue