lnsocket

A minimal C library for connecting to the lightning network
git clone git://jb55.com/lnsocket
Log | Files | Refs | Submodules | README | LICENSE

commit 02f5edef454f8d59b5036b3bc8744159ab548062
parent 3718230c1db12648785c8676d0069e4299fed479
Author: William Casarin <jb55@jb55.com>
Date:   Sun, 16 Jan 2022 10:44:49 -0800

remove thing from shell.nix

Diffstat:
Mshell.nix | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/shell.nix b/shell.nix @@ -1,6 +1,5 @@ { pkgs ? import <nixpkgs> {} }: -with pkgs; -mkShell { +pkgs.mkShell { buildInputs = [ ]; - nativeBuildInputs = [ gdb autoreconfHook clib ]; + nativeBuildInputs = with pkgs; [ gdb autoreconfHook ]; }