Unverified Commit 186d231a authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

cachix: dontCheck on darwin for now

Given that it builds and reportedly runs just fine,
let's not block the nixpkgs-unstable channel anymore. See
https://github.com/NixOS/nixpkgs/issues/461651
parent 66d930cb
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
    );
  }
)