From e0d871ba914c51610e817f9f8f576a5de1cd688c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 7 Feb 2011 17:37:22 +0000 Subject: [PATCH] maxima: added buildInput 'texinfo' so that the reference documentation can be built svn path=/nixpkgs/trunk/; revision=25797 --- pkgs/applications/science/math/maxima/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/maxima/default.nix b/pkgs/applications/science/math/maxima/default.nix index 0129d8acf0d..bb0de4c930b 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";