From 32d693fa8cf92311208b7754a71f78a749d52ed0 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 20 Aug 2023 16:24:25 +0100 Subject: [PATCH] fix: ensure openssl is available to build the project --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 28b1d4e..c983b43 100644 --- a/flake.nix +++ b/flake.nix @@ -38,7 +38,7 @@ # `nix develop` devShell = pkgs.mkShell { - nativeBuildInputs = with pkgs; [ rustc cargo ]; + nativeBuildInputs = with pkgs; [ rustc cargo pkg-config openssl]; }; nixosModule = { lib, pkgs, config, ... }: @@ -235,4 +235,4 @@ }; }); -} \ No newline at end of file +}