ba274e578c
Made octave link with graphicsmagick to get imread() working. Nevertheless, imread does not work, because of some problems between octave and latest versions of graphicsmagick: http://www-old.cae.wisc.edu/pipermail/octave-maintainers/2010-February/015295.html Next to do: add an older version of graphics magick for octave. svn path=/nixpkgs/trunk/; revision=20389
14 lines
456 B
Nix
14 lines
456 B
Nix
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
|
|
libX11, graphicsmagick}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "octave-3.2.4";
|
|
src = fetchurl {
|
|
url = ftp://ftp.octave.org/pub/octave/octave-3.2.4.tar.bz2;
|
|
sha256 = "0iyivx7qz7cvwz7qczqrl4ysqivlhn5ax92z9md0m77dqw2isis8";
|
|
};
|
|
buildInputs = [gfortran readline ncurses perl flex texinfo qhull libX11
|
|
graphicsmagick ];
|
|
configureFlags = "--enable-readline --enable-dl";
|
|
}
|