From 04a02cbaeab4054d1087d515d06840d8ef264dd5 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 14 Apr 2022 19:44:20 -0700 Subject: [PATCH] don't need openssl Signed-off-by: William Casarin --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 53c69b2..36c88ed 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,5 @@ { pkgs ? import {} }: with pkgs; mkShell { - buildInputs = [ secp256k1 openssl gdb ]; + buildInputs = [ secp256k1 gdb ]; }