2aa0b85653
Update to the latest release. Highlights for c-lightning users -------------------------------- - Less stuck payments: Liveness ping test before locking up funds with peers. - Better routing: now considers size of channels. - Fewer spurious closes: fee estimate improvements, and new feerates command - Several annoying bugs fixed. Highlights for the network -------------------------- - Gossipd now less spammy with channel_update. - option_data_loss_protect to protect peers against being out-of-date. - Payment errors now refer to the correct channel. Internal Improvements --------------------- - Simplified client flow; after init message exchange by connectd, each is isolated in its own daemon. - JSON parameter handling vastly simplfied. - Python testing framework now uses proper fixtures, and split into separate files. - Many other cleanups and clarifications. - We keepachangelog.com! Signed-off-by: William Casarin <jb55@jb55.com>
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, python3, pkgconfig, which, libtool, autoconf, automake,
|
|
autogen, sqlite, gmp, zlib, fetchFromGitHub }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "clightning-${version}";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
fetchSubmodules = true;
|
|
owner = "ElementsProject";
|
|
repo = "lightning";
|
|
rev = "v${version}";
|
|
sha256 = "0qx30i1c97ic4ii8bm0sk9dh76nfg4ihl9381gxjj14i4jr1q8y4";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ which sqlite gmp zlib autoconf libtool automake autogen python3 pkgconfig ];
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
configurePhase = ''
|
|
./configure --prefix=$out --disable-developer --disable-valgrind
|
|
'';
|
|
|
|
postPatch = ''
|
|
echo "" > tools/refresh-submodules.sh
|
|
patchShebangs tools/generate-wire.py
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A Bitcoin Lightning Network implementation in C";
|
|
longDescription= ''
|
|
c-lightning is a standard compliant implementation of the Lightning
|
|
Network protocol. The Lightning Network is a scalability solution for
|
|
Bitcoin, enabling secure and instant transfer of funds between any two
|
|
parties for any amount.
|
|
'';
|
|
homepage = https://github.com/ElementsProject/lightning;
|
|
maintainers = with maintainers; [ jb55 ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|