b7879b343a
- Simpler - Allows modifying the configurePhase via `configureFlags`
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoconf
|
|
, automake
|
|
, autogen
|
|
, gettext
|
|
, libtool
|
|
, pkg-config
|
|
, unzip
|
|
, which
|
|
, gmp
|
|
, libsodium
|
|
, python3
|
|
, sqlite
|
|
, zlib
|
|
}:
|
|
let
|
|
py3 = python3.withPackages (p: [ p.Mako p.mrkd ]);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "clightning";
|
|
version = "0.10.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
|
|
sha256 = "3c9dcb686217b2efe0e988e90b95777c4591e3335e259e01a94af87e0bf01809";
|
|
};
|
|
|
|
nativeBuildInputs = [ autogen autoconf automake gettext libtool pkg-config py3 unzip which ];
|
|
|
|
buildInputs = [ gmp libsodium sqlite zlib ];
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
tools/generate-wire.py \
|
|
tools/update-mocks.sh \
|
|
tools/mockup.sh \
|
|
devtools/sql-rewrite.py
|
|
'';
|
|
|
|
configureFlags = [ "--disable-developer" "--disable-valgrind" ];
|
|
|
|
makeFlags = [ "VERSION=v${version}" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
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 prusnak ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|