summary refs log tree commit diff
path: root/pkgs/stdenv/cross
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-25 14:09:50 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2019-11-26 12:57:16 -0500
commit87379637357f362abe47cc8a86fd7f2735f6180a (patch)
tree86adf297932537dfa18253f91f4303b9dc55977b /pkgs/stdenv/cross
parent765d2608b694e425743b8030570ea8c99e167558 (diff)
downloadnixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar.gz
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar.bz2
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar.lz
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar.xz
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.tar.zst
nixpkgs-87379637357f362abe47cc8a86fd7f2735f6180a.zip
Fix lib tests
js-ghcjs didn't fit in an existing categor.
Diffstat (limited to 'pkgs/stdenv/cross')
-rw-r--r--pkgs/stdenv/cross/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/cross/default.nix b/pkgs/stdenv/cross/default.nix
index 44d412e041b..cc49af7de3b 100644
--- a/pkgs/stdenv/cross/default.nix
+++ b/pkgs/stdenv/cross/default.nix
@@ -62,7 +62,7 @@ in lib.init bootStages ++ [
              # `null` or skipping the attribute would cause an eval failure
              # `tryEval` wouldn't catch, wrecking accessing previous stages
              # when there is a C compiler and everything should be fine.
-             then throw "no C compile provided for this platform"
+             then throw "no C compiler provided for this platform"
            else if crossSystem.useLLVM or false
              then buildPackages.llvmPackages_8.lldClang
            else buildPackages.gcc;