Skip to content

Commit

Permalink
darwin.cctools: Fix build on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Sep 17, 2016
1 parent 663e379 commit 11f4921
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -10927,7 +10927,10 @@ in
xctoolchain = xcode.toolchain;
};

cctools = (callPackage ../os-specific/darwin/cctools/port.nix { inherit libobjc; }).native;
cctools = (callPackage ../os-specific/darwin/cctools/port.nix {
inherit libobjc;
stdenv = if stdenv.isDarwin then stdenv else libcxxStdenv;
}).native;

cf-private = callPackage ../os-specific/darwin/cf-private {
inherit (apple-source-releases) CF;
Expand Down

0 comments on commit 11f4921

Please sign in to comment.