From 79210713e6112ceb7c276c0028ec696c43a52c11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 10 Feb 2020 16:56:58 +0100 Subject: [PATCH] nixpkgs manual: fix a typo in cross-compilation I can't say I really understand that much about our cross stuff, but this seems very clear. --- doc/stdenv/cross-compilation.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stdenv/cross-compilation.xml b/doc/stdenv/cross-compilation.xml index bea56a0c2fc..690578b78c6 100644 --- a/doc/stdenv/cross-compilation.xml +++ b/doc/stdenv/cross-compilation.xml @@ -256,7 +256,7 @@ -doCheck = stdenv.hostPlatform != stdenv.buildPlatfrom; +doCheck = stdenv.hostPlatform == stdenv.buildPlatfrom; Add it to your mkDerivation invocation.