Unverified Commit b082aa6a authored by Vladimír Čunát's avatar Vladimír Čunát Committed by GitHub
Browse files

cachix: dontCheck on darwin for now (#461839)

parents d3239a1a 186d231a
Loading
Loading
Loading
Loading
+20 −16
Original line number Diff line number Diff line
@@ -3904,7 +3904,8 @@ with haskellLib;
      src = src + "/cachix-api";
    } super.cachix-api;

    cachix = lib.pipe super.cachix [
    cachix = lib.pipe super.cachix (
      [
        (overrideSrc {
          inherit version;
          src = src + "/cachix";
@@ -3919,6 +3920,9 @@ with haskellLib;
            hnix-store-core = self.hnix-store-core_0_8_0_0;
          }
        )
    ];
      ]
      # https://github.com/NixOS/nixpkgs/issues/461651
      ++ lib.optional pkgs.stdenv.isDarwin dontCheck
    );
  }
)