Updating octave and gnuplot.

svn path=/nixpkgs/trunk/; revision=20007
This commit is contained in:
Lluís Batlle i Rossell 2010-02-15 10:54:50 +00:00
parent 39a69da121
commit 43e167641f
2 changed files with 6 additions and 6 deletions

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull}:
stdenv.mkDerivation {
name = "octave-3.0.4";
name = "octave-3.2.4";
src = fetchurl {
url = ftp://ftp.octave.org/pub/octave/octave-3.0.4.tar.bz2;
sha256 = "1rkpzig0r0zrm73avxgai0zqkz9hv4js57i1xxdzcm22qw22szaj";
url = ftp://ftp.octave.org/pub/octave/octave-3.2.4.tar.bz2;
sha256 = "0iyivx7qz7cvwz7qczqrl4ysqivlhn5ax92z9md0m77dqw2isis8";
};
buildInputs = [gfortran readline ncurses perl flex texinfo qhull];
configureFlags = "--enable-readline --enable-dl";

View file

@ -19,10 +19,10 @@ assert x11Support -> ((libX11 != null) &&
assert (wxGTK != null) -> x11Support;
stdenv.mkDerivation {
name = "gnuplot-4.2.5";
name = "gnuplot-4.2.6";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/gnuplot-4.2.5.tar.gz";
sha256 = "1y0imxy9bflzny98n1wvv19bqxfsvsxbl8z12k46qnna0vg7wiw9";
url = "mirror://sourceforge/gnuplot/gnuplot-4.2.6.tar.gz";
sha256 = "10lfmbib3wrzfhvjqk7ffc29fb2aw6m84p4cx6znmgbpc3mw5yw1";
};
configureFlags = if x11Support then ["--with-x"] else ["--without-x"];