summary refs log tree commit diff
path: root/pkgs/development/libraries/msgpack
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/development/libraries/msgpack
parent0397453f1a8145d68e9627ad7f2e39d57732c651 (diff)
downloadnixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.gz
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.bz2
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.lz
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.xz
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.tar.zst
nixpkgs-51e5f8af42cd51bcf3cb5c86796bca4c5af02365.zip
treewide: don’t set CMAKE_SYSTEM_NAME
Diffstat (limited to 'pkgs/development/libraries/msgpack')
-rw-r--r--pkgs/development/libraries/msgpack/generic.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/libraries/msgpack/generic.nix b/pkgs/development/libraries/msgpack/generic.nix
index 306becf0c18..de277329961 100644
--- a/pkgs/development/libraries/msgpack/generic.nix
+++ b/pkgs/development/libraries/msgpack/generic.nix
@@ -15,8 +15,6 @@ stdenv.mkDerivation rec {
   cmakeFlags = []
     ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
                            "-DMSGPACK_BUILD_EXAMPLES=OFF"
-    ++ stdenv.lib.optional (stdenv.hostPlatform.libc == "msvcrt")
-                           "-DCMAKE_SYSTEM_NAME=Windows"
     ;
 
   meta = with stdenv.lib; {