Fix help text. Added nix-shell to build locally

This commit is contained in:
AB
2024-09-25 15:24:21 +03:00
parent bc473ed532
commit 2b7b3b9a22
2 changed files with 28 additions and 17 deletions

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.openssl
pkgs.pkg-config
];
shellHook = ''
unset OPENSSL_DIR
'';
}