flake: migrate from openssl 3.0.13 to openssl 3.3.0

This commit is contained in:
Muhammad Nauman Raza 2024-05-28 18:47:32 +01:00
parent e6fbb1bb1e
commit 76f1ee06f6
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -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
];
};
}