notecrumbs

a nostr opengraph server build on nostrdb and egui
git clone git://jb55.com/notecrumbs
Log | Files | Refs | README | LICENSE

commit 6b4cdcef9c52b4f805bfdc5c58f36516bc8accdd
parent a4f6400693f8d645d8a9a71dc983eaf4bf4a5ef8
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 18 Dec 2025 10:05:41 -0800

nix: openssl is needed now

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 { - nativeBuildInputs = [ libiconv pkg-config fontconfig freetype ]; + nativeBuildInputs = [ libiconv pkg-config fontconfig freetype openssl ]; }