From bef4ae60e4e1452cb26ba498877ef1130a1a752c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 26 Jan 2011 08:09:59 +0000 Subject: [PATCH] BDW-GC: Fix Cygwin builds with the CVS tree. svn path=/nixpkgs/trunk/; revision=25691 --- pkgs/development/libraries/boehm-gc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix index 2febd87be29..95630b1135b 100644 --- a/pkgs/development/libraries/boehm-gc/default.nix +++ b/pkgs/development/libraries/boehm-gc/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation ({ sha256 = "00f7aed82fa02211db93692c24b74e15010aff545f97691c5e362432a7ae283a"; }; - patches = stdenv.lib.optional (stdenv.system == "i686-cygwin") + patches = stdenv.lib.optional (stdenv.isCygwin && !cvs) ./cygwin-pthread-dl.patch; doCheck = true;