From bf85615a28eb45a1269ec26d081bbe7a825d6b4b Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Tue, 28 May 2024 18:47:32 +0100 Subject: [PATCH] flake: migrate from openssl 3.0.13 to openssl 3.3.0 --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 31ffc3d..13de3f1 100644 --- a/flake.nix +++ b/flake.nix @@ -32,10 +32,10 @@ # Used by `nix develop` devShells.default = pkgs.mkShell rec { shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [ - pkgs.openssl + pkgs.openssl_3_3 ]}"''; buildInputs = with pkgs; [ - openssl mold clang pkg-config + openssl_3_3 mold clang pkg-config ]; }; }