about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorPeter Neuroth <pet.v.ne@gmail.com>2022-03-03 14:02:50 +0100
committerPeter Neuroth <pet.v.ne@gmail.com>2022-03-03 14:02:50 +0100
commit324f0a4e76cc1c2ce42179fc58d2bdd043deb089 (patch)
tree60bffe590aad1078015874bd058de99b157e8eb7 /pkgs/applications/blockchains
parent72d265d5480d5ad99085e2f56e1f5cd5a85dfe5c (diff)
downloadnixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar.gz
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar.bz2
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar.lz
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar.xz
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.tar.zst
nixlib-324f0a4e76cc1c2ce42179fc58d2bdd043deb089.zip
fixup! clightning: add darwin support
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/clightning/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/clightning/default.nix b/pkgs/applications/blockchains/clightning/default.nix
index c51a2ced056c..b6f149e3a7f1 100644
--- a/pkgs/applications/blockchains/clightning/default.nix
+++ b/pkgs/applications/blockchains/clightning/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
   # 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.
-  nativeBuildInputs = [ autogen autoconf automake gettext pkg-config py3 unzip which ] 
+  nativeBuildInputs = [ autogen autoconf automake gettext pkg-config py3 unzip which ]
     ++ lib.optionals stdenv.isDarwin [ darwin.cctools ] ++ [ libtool ];
 
   buildInputs = [ gmp libsodium sqlite zlib ];