curl: don’t skip passthru.tests.static on x86_64-darwin

This works since <https://github.com/NixOS/nixpkgs/pull/346950>.
This commit is contained in:
Emily 2024-10-12 02:29:41 +01:00
parent 7635bd4d45
commit 12f8f3a49e

View File

@ -219,7 +219,6 @@ stdenv.mkDerivation (finalAttrs: {
# nginx-http3 = useThisCurl nixosTests.nginx-http3;
nginx-http3 = nixosTests.nginx-http3;
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
} // lib.optionalAttrs (stdenv.hostPlatform.system != "x86_64-darwin") {
static = pkgsStatic.curl;
} // lib.optionalAttrs (!stdenv.hostPlatform.isDarwin) {
fetchpatch = tests.fetchpatch.simple.override { fetchpatch = (fetchpatch.override { fetchurl = useThisCurl fetchurl; }) // { version = 1; }; };