From 8aa7d7b1ac1cd47bd8d649488ccea6057e3f574c Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 6 Apr 2011 05:22:10 +0000 Subject: [PATCH] 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 --- pkgs/development/libraries/ppl/default.nix | 6 +++--- 1 file 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 ];