summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-02-07 17:37:22 +0000
committerPeter Simons <simons@cryp.to>2011-02-07 17:37:22 +0000
commite0d871ba914c51610e817f9f8f576a5de1cd688c (patch)
treea08d8a7db0bb6213cf8f68584c7c14b1858bd08a /pkgs/applications/science
parent7795e5ec245216fc62303136b83c1c629bdc0c7d (diff)
downloadnixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar.gz
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar.bz2
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar.lz
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar.xz
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.tar.zst
nixlib-e0d871ba914c51610e817f9f8f576a5de1cd688c.zip
maxima: added buildInput 'texinfo' so that the reference documentation can be built
svn path=/nixpkgs/trunk/; revision=25797
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/maxima/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix
index 0129d8acf0d6..bb0de4c930b5 100644
--- a/pkgs/applications/science/math/maxima/default.nix
+++ b/pkgs/applications/science/math/maxima/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, clisp }:
+{ stdenv, fetchurl, clisp, texinfo }:
 
 let
     name    = "maxima";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
     configureFlags="--infodir=$out/share/info --mandir=$out/share/man"
   '';
 
-  buildInputs = [clisp];
+  buildInputs = [clisp texinfo];
 
   meta = {
     description = "Maxima computer algebra system";