Unverified Commit 3f092f90 authored by Emily's avatar Emily Committed by GitHub
Browse files

Revert "curl: disable fetchpatch passthru test on darwin" (#348024)

parents ffe261ac cd11e6c7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -202,6 +202,7 @@ stdenv.mkDerivation (finalAttrs: {
    inherit opensslSupport openssl;
    tests = {
      withCheck = finalAttrs.finalPackage.overrideAttrs (_: { doCheck = true; });
      fetchpatch = tests.fetchpatch.simple.override { fetchpatch = (fetchpatch.override { fetchurl = useThisCurl fetchurl; }) // { version = 1; }; };
      curlpp = useThisCurl curlpp;
      coeurl = useThisCurl coeurl;
      haskell-curl = useThisCurl haskellPackages.curl;
@@ -215,8 +216,6 @@ stdenv.mkDerivation (finalAttrs: {
      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; }; };
    };
  };