Updating gmp and ppl (this last, mandatory, to match the gmp version).

I chose a snapshot of the future 0.11 ppl (that had to be released one or two
months ago, I think), waiting for the 0.11 to be frozen. Only 0.11 supports
building with gmp 5.x



svn path=/nixpkgs/branches/stdenv-updates/; revision=22268
This commit is contained in:
Lluís Batlle i Rossell 2010-06-14 21:44:38 +00:00
parent d30ede1a13
commit e31361657c
2 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, m4, cxx ? true}: {stdenv, fetchurl, m4, cxx ? true}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gmp-5.0.0"; name = "gmp-5.0.1";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/gmp/${name}.tar.bz2"; url = "mirror://gnu/gmp/${name}.tar.bz2";
sha256 = "0kwqhyvw48yzxjp29c721m9v498115dh6li9adk7b84mbh7gv2gh"; sha256 = "1yrr14l6vvhm1g27y8nb3c75j0i4ii4k1gw7ik08safk3zq119m2";
}; };
buildNativeInputs = [m4]; buildNativeInputs = [m4];

View File

@ -1,12 +1,12 @@
{ fetchurl, stdenv, gmpxx, perl, gnum4 }: { fetchurl, stdenv, gmpxx, perl, gnum4 }:
let version = "0.10.2"; in let version = "0.11pre24"; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ppl-${version}"; name = "ppl-${version}";
src = fetchurl { src = fetchurl {
url = "ftp://ftp.cs.unipr.it/pub/ppl/releases/${version}/${name}.tar.bz2"; url = "ftp://ftp.cs.unipr.it/pub/ppl/snapshots/${version}/${name}.tar.bz2";
sha256 = "0xz2f3lny4l9ji1ilg6pxv34sh4cbh535cnm68smynzp01wgnh7y"; sha256 = "1w6v5wxj13mnp311aaglhdyzxlx13g84054bsp7sym3ryjjyg0gx";
}; };
buildInputs = [ perl gnum4 ]; buildInputs = [ perl gnum4 ];