lol

Merge pull request #115057 from danieldk/wrangler-system-openssl

wrangler: build against system OpenSSL

authored by

Sandro and committed by
GitHub
bcf1cb07 5691cf42

+5 -4
+5 -4
pkgs/development/tools/wrangler/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, perl }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wrangler"; ··· 13 13 14 14 cargoSha256 = "0w845virvw7mvibc76ar2hbffhfzj2v8v1xkrsssrgzyaryb48jk"; 15 15 16 - nativeBuildInputs = [ perl ] 17 - ++ lib.optionals stdenv.isLinux [ pkg-config ]; 16 + nativeBuildInputs = [ pkg-config ]; 18 17 19 - buildInputs = lib.optionals stdenv.isLinux [ openssl ] 18 + buildInputs = [ openssl ] 20 19 ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ]; 20 + 21 + OPENSSL_NO_VENDOR = 1; 21 22 22 23 # tries to use "/homeless-shelter" and fails 23 24 doCheck = false;