mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
boehm-gc: Add missing brackets.
svn path=/nixpkgs/trunk/; revision=20902
This commit is contained in:
parent
5e1ea06c0f
commit
50b5ca25d3
|
@ -1,7 +1,7 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
let version = "7.1"; in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation ({
|
||||
name = "boehm-gc-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -50,4 +50,4 @@ stdenv.mkDerivation {
|
|||
(if stdenv.system == "x86_64-darwin"
|
||||
# Fix "#error ucontext routines are deprecated, and require _XOPEN_SOURCE to be defined".
|
||||
then { configureFlags = "CPPFLAGS=-D_XOPEN_SOURCE"; }
|
||||
else {})
|
||||
else {}))
|
||||
|
|
Loading…
Reference in a new issue