From dc1af596fd98b17c1492dd6944a6272d01e6e88d Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 5 Apr 2011 16:10:58 +0000 Subject: [PATCH] Disable watchdog when building ppl-0.11 statically svn path=/nixpkgs/trunk/; revision=26700 --- pkgs/development/libraries/ppl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/ppl/default.nix b/pkgs/development/libraries/ppl/default.nix index 677d578e242..128a370c376 100644 --- a/pkgs/development/libraries/ppl/default.nix +++ b/pkgs/development/libraries/ppl/default.nix @@ -2,7 +2,7 @@ let version = "0.10.2"; - staticFlags = if static then " --enable-static --disable-shared" else ""; + staticFlags = if static then " --enable-static --disable-shared --disable-watchdog" else ""; in stdenv.mkDerivation rec { name = "ppl-${version}";