nostril

A C cli tool for creating nostr events
git clone git://jb55.com/nostril
Log | Files | Refs | README

commit 04a02cbaeab4054d1087d515d06840d8ef264dd5
parent c5a3be3b74b13d1b1860e898bafdca673748d462
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 14 Apr 2022 19:44:20 -0700

don't need openssl

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mshell.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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