2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, python3, pkgconfig, which, libtool, autoconf, automake,
|
2019-03-04 13:21:56 +01:00
|
|
|
autogen, sqlite, gmp, zlib, fetchurl, unzip, fetchpatch }:
|
2018-06-21 04:48:12 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clightning-${version}";
|
2019-03-04 13:21:56 +01:00
|
|
|
version = "0.7.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
|
|
|
|
sha256 = "448022c2433cbf19bbd0f726344b0500c0c21ee5cc2291edf6b622f094cb3a15";
|
2018-06-21 04:48:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-03-04 13:21:56 +01:00
|
|
|
nativeBuildInputs = [ autoconf autogen automake libtool pkgconfig which unzip ];
|
2018-11-22 19:16:36 +01:00
|
|
|
buildInputs = [ sqlite gmp zlib python3 ];
|
2018-06-21 04:48:12 +02:00
|
|
|
|
2019-01-09 23:34:19 +01:00
|
|
|
makeFlags = [ "prefix=$(out) VERSION=v${version}" ];
|
2018-06-21 04:48:12 +02:00
|
|
|
|
2019-03-04 13:21:56 +01:00
|
|
|
patches = [
|
|
|
|
# remove after 0.7.0
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-0.7.0-build.patch";
|
|
|
|
url = "https://github.com/ElementsProject/lightning/commit/ffc03d2bc84dc42f745959fbb6c8007cf0a6f701.patch";
|
|
|
|
sha256 = "1m5fiz3m8k3nk09nldii8ij94bg6fqllqgdbiwj3sy12vihs8c4v";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-06-21 04:48:12 +02:00
|
|
|
configurePhase = ''
|
|
|
|
./configure --prefix=$out --disable-developer --disable-valgrind
|
|
|
|
'';
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|