3
0
Fork 0
forked from mirrors/nixpkgs

html-tidy: Don't use stdenv.cross

This commit is contained in:
hsloan 2017-06-28 16:56:12 -04:00 committed by John Ericson
parent 60ce1e3b90
commit 936196129d

View file

@ -1,4 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, libxslt }:
{ stdenv, fetchFromGitHub, cmake, libxslt
, hostPlatform
}:
stdenv.mkDerivation rec {
name = "html-tidy-${version}";
@ -14,7 +16,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
cmakeFlags = stdenv.lib.optional
(stdenv.cross.libc or null == "msvcrt") "-DCMAKE_SYSTEM_NAME=Windows";
(hostPlatform.libc or null == "msvcrt") "-DCMAKE_SYSTEM_NAME=Windows";
# ATM bin/tidy is statically linked, as upstream provides no other option yet.
# https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107