about summary refs log tree commit diff
path: root/pkgs/development/interpreters/octave/hg.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-08 20:06:03 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-04-08 20:06:03 +0000
commit9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503 (patch)
treef6609eab07c878fbc8f06d5cda61a13269bd82f0 /pkgs/development/interpreters/octave/hg.nix
parent813a3b6c6d761f4d472f45515ada421972f4f137 (diff)
downloadnixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar.gz
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar.bz2
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar.lz
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar.xz
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.tar.zst
nixlib-9f2a2a6a84f5c7d18f7684e6d0e7f349d6a1a503.zip
Adding qhull, and updating octaves.
svn path=/nixpkgs/trunk/; revision=14955
Diffstat (limited to 'pkgs/development/interpreters/octave/hg.nix')
-rw-r--r--pkgs/development/interpreters/octave/hg.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/octave/hg.nix b/pkgs/development/interpreters/octave/hg.nix
index 037a2ab66b01..f4ecde662aa6 100644
--- a/pkgs/development/interpreters/octave/hg.nix
+++ b/pkgs/development/interpreters/octave/hg.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, g77, readline, ncurses, perl, flex,
- bison, autoconf, automake, sourceByName, getConfig, lib, atlas, gperf, python, glibc, gnuplot, texinfo, texLive}:
+ bison, autoconf, automake, sourceByName, getConfig, lib, atlas, gperf, python, glibc, gnuplot, texinfo, texLive, qhull, libX11}:
 
 assert readline != null && ncurses != null && flex != null;
 assert g77.langF77;
 
-let commonBuildInputs = [g77 readline ncurses perl glibc]; in
+let commonBuildInputs = [g77 readline ncurses perl glibc qhull libX11 texinfo]; in
 
 stdenv.mkDerivation ({
   NIX_LDFLAGS = "-lpthread";
@@ -26,7 +26,7 @@ stdenv.mkDerivation ({
         ./autogen.sh
         export HOME=$TMP
         '';
-    buildInputs = commonBuildInputs ++ [ flex bison autoconf automake gperf gnuplot texinfo texLive ]
+    buildInputs = commonBuildInputs ++ [ flex bison autoconf automake gperf gnuplot texLive ]
                   ++ lib.optionals (getConfig ["octave" "atlas"] true) [ python atlas ];
     # it does build, but documentation doesn't.. So just remove that directory
     # from the buildfile
@@ -38,10 +38,10 @@ stdenv.mkDerivation ({
       make
     '';
   } else {
-    name = "octave-3.1.51";
+    name = "octave-3.1.55";
     src =  fetchurl {
-      url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-3.1.51.tar.bz2;
-      sha256 = "0v0khhpmydyimvdl2rswfd0jrcqa9rhd3cyi60zhqv2hi0bhmkh8";
+      url = ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-3.1.55.tar.bz2;
+      sha256 = "1lm4v85kdic4n5yxwzrdb0v6dc6nw06ljgx1q8hfkmi146kpg7s6";
     };
     buildInputs = commonBuildInputs ++ [ flex bison autoconf automake python ]
                   ++ lib.optionals (getConfig ["octave" "atlas"] true) [ python atlas ];