Author: viric
Date: Wed Feb 22 22:42:16 2012
New Revision: 32496
URL: https://nixos.org/websvn/nix/?rev=32496&sc=1
Log:
Making octave build with qrupdate, and keep the big log of tests results of the
check phase in the out store path.
Modified:
nixpkgs/trunk/pkgs/development/interpreters/octave/default.nix
Modified: nixpkgs/trunk/pkgs/development/interpreters/octave/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/interpreters/octave/default.nix Wed Feb
22 22:41:44 2012 (r32495)
+++ nixpkgs/trunk/pkgs/development/interpreters/octave/default.nix Wed Feb
22 22:42:16 2012 (r32496)
@@ -1,6 +1,6 @@
{stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull,
libX11, graphicsmagick, pcre, liblapack, texLive, pkgconfig, mesa, fltk,
-fftw, fftwSinglePrec, zlib, curl }:
+fftw, fftwSinglePrec, zlib, curl, qrupdate }:
stdenv.mkDerivation rec {
name = "octave-3.4.3";
@@ -11,11 +11,17 @@
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
graphicsmagick pcre liblapack texLive pkgconfig mesa fltk zlib curl
- fftw fftwSinglePrec ];
+ fftw fftwSinglePrec qrupdate ];
doCheck = true;
enableParallelBuilding = true;
configureFlags = [ "--enable-readline" "--enable-dl" ];
+
+ # Keep a copy of the octave tests detailed results in the output
+ # derivation, because someone may care
+ postInstall = ''
+ cp test/fntests.log $out/share/octave/${name}-fntests.log
+ '';
}
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits