build: Let's go back to nix trying to use its own OpenSSL.

This commit is contained in:
2025-01-30 12:31:12 -05:00
parent 697e2f2071
commit 8d529327a4
2 changed files with 5 additions and 3 deletions

View File

@ -33,19 +33,20 @@ pkgs.stdenv.mkDerivation rec {
};
nativeBuildInputs = with pkgs; [
bash
glibc
gnumake
openssl
which
];
buildInputs = with pkgs; [
glibc
openssl
which
];
buildPhase = ''
make -j $NIX_BUILD_CORES release
make -j $NIX_BUILD_CORES release USE_SYSTEM_SSL=1
'';
installPhase = ''