summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-16 21:52:38 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-16 21:52:38 -0500
commit51e5f8af42cd51bcf3cb5c86796bca4c5af02365 (patch)
treed53238e877321c47b3874f732226a0883532bc6d /pkgs/tools/text
parent0397453f1a8145d68e9627ad7f2e39d57732c651 (diff)
downloadnixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.gz
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.bz2
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.lz
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.xz
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.zst
nixlib-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.zip
treewide: don’t set CMAKE_SYSTEM_NAME
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/html-tidy/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/tools/text/html-tidy/default.nix b/pkgs/tools/text/html-tidy/default.nix
index 51ce4baa0beb..fcdba6cbba48 100644
--- a/pkgs/tools/text/html-tidy/default.nix
+++ b/pkgs/tools/text/html-tidy/default.nix
@@ -13,9 +13,6 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake libxslt/*manpage*/ ];
 
-  cmakeFlags = stdenv.lib.optional
-    (stdenv.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