summary refs log tree commit diff
path: root/pkgs/development/libraries/ppl
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-04-06 05:22:10 +0000
committerShea Levy <shea@shealevy.com>2011-04-06 05:22:10 +0000
commit8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c (patch)
tree28cdc22b07934d7692e6ec8df1ddb02b1ad5f1c1 /pkgs/development/libraries/ppl
parent4a9c8df2de2035c82b7ccfcebd6a0c4cf768b086 (diff)
downloadnixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar.gz
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar.bz2
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar.lz
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar.xz
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.tar.zst
nixlib-8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c.zip
Bump ppl to 0.11
This is so we only have one version of ppl when stdenv-updates is merged

Tested by nix-build -A gcc4.4, for the reasons detailed in previous commit

svn path=/nixpkgs/branches/stdenv-updates/; revision=26707
Diffstat (limited to 'pkgs/development/libraries/ppl')
-rw-r--r--pkgs/development/libraries/ppl/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/ppl/default.nix b/pkgs/development/libraries/ppl/default.nix
index 677d578e2425..d8ffde644de1 100644
--- a/pkgs/development/libraries/ppl/default.nix
+++ b/pkgs/development/libraries/ppl/default.nix
@@ -1,15 +1,15 @@
 { fetchurl, stdenv, gmpxx, perl, gnum4, static ? false }:
 
 let
-  version = "0.10.2";
-  staticFlags = if static then " --enable-static --disable-shared" else "";
+  version = "0.11";
+  staticFlags = if static then " --enable-static --disable-shared --disable-watchdog" else "";
 in
   stdenv.mkDerivation rec {
     name = "ppl-${version}";
 
     src = fetchurl {
       url = "mirror://gcc/infrastructure/ppl-${version}.tar.gz";
-      sha256 = "0lly44sac4jd72klnhhil3wha15vak76r6gy88sh0zjsaww9hf6h";
+      sha256 = "0xqwyaj232gi0pgm6z2rihk6p8l1rngbbibnhmcrbq4jq550clrl";
     };
 
     buildNativeInputs = [ perl gnum4 ];