3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/blockchains/clightning/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.2 KiB
Nix
Raw Normal View History

2021-01-21 10:10:41 +00:00
{ lib
, stdenv
, darwin
2021-01-21 10:10:41 +00:00
, fetchurl
, autoconf
, automake
, autogen
, gettext
, libtool
, pkg-config
, unzip
, which
, gmp
2021-01-25 18:23:58 +00:00
, libsodium
2021-01-21 10:10:41 +00:00
, python3
, sqlite
, zlib
}:
let
2021-11-03 20:56:17 +00:00
py3 = python3.withPackages (p: [ p.Mako p.mrkd ]);
2021-01-21 10:10:41 +00:00
in
stdenv.mkDerivation rec {
pname = "clightning";
2021-11-03 20:56:17 +00:00
version = "0.10.2";
src = fetchurl {
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
2021-11-03 20:56:17 +00:00
sha256 = "3c9dcb686217b2efe0e988e90b95777c4591e3335e259e01a94af87e0bf01809";
};
# when building on darwin we need dawin.cctools to provide the correct libtool
# as libwally-core detects the host as darwin and tries to add the -static
# option to libtool, also we have to add the modified gsed package.
2022-03-03 13:02:50 +00:00
nativeBuildInputs = [ autogen autoconf automake gettext pkg-config py3 unzip which ]
++ lib.optionals stdenv.isDarwin [ darwin.cctools darwin.autoSignDarwinBinariesHook ] ++ [ libtool ];
2021-01-25 18:23:58 +00:00
buildInputs = [ gmp libsodium sqlite zlib ];
# this causes some python trouble on a darwin host so we skip this step.
# also we have to tell libwally-core to use sed instead of gsed.
postPatch = if !stdenv.isDarwin then ''
2019-08-30 13:34:39 +01:00
patchShebangs \
tools/generate-wire.py \
tools/update-mocks.sh \
2019-10-29 07:52:43 +00:00
tools/mockup.sh \
devtools/sql-rewrite.py
'' else ''
substituteInPlace external/libwally-core/tools/autogen.sh --replace gsed sed && \
substituteInPlace external/libwally-core/configure.ac --replace gsed sed
'';
configureFlags = [ "--disable-developer" "--disable-valgrind" ];
2021-01-21 10:10:41 +00:00
makeFlags = [ "VERSION=v${version}" ];
2021-01-21 10:10:41 +00:00
enableParallelBuilding = true;
2021-01-21 10:10:41 +00:00
meta = with lib; {
description = "A Bitcoin Lightning Network implementation in C";
2021-01-21 10:10:41 +00:00
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";
2021-01-21 10:10:41 +00:00
maintainers = with maintainers; [ jb55 prusnak ];
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
};
}