mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
octave: forbid 32-bit builds of the octaveFull version, looks like too much memory needed
This commit is contained in:
parent
5c686923de
commit
472ac50f5b
@ -2,7 +2,7 @@
|
|||||||
, libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
|
, libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
|
||||||
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
|
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
|
||||||
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
|
||||||
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null
|
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null, platforms ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -70,6 +70,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://octave.org/;
|
homepage = http://octave.org/;
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
maintainers = with stdenv.lib.maintainers; [viric raskin];
|
maintainers = with stdenv.lib.maintainers; [viric raskin];
|
||||||
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
platforms = with stdenv.lib.platforms; if platforms == null then linux ++ darwin else platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -5874,6 +5874,7 @@ in
|
|||||||
};
|
};
|
||||||
octaveFull = (lowPrio (callPackage ../development/interpreters/octave {
|
octaveFull = (lowPrio (callPackage ../development/interpreters/octave {
|
||||||
qt = qt4;
|
qt = qt4;
|
||||||
|
platforms = ["x86_64-linux" "x86_64-darwin"];
|
||||||
}));
|
}));
|
||||||
|
|
||||||
ocropus = callPackage ../applications/misc/ocropus { };
|
ocropus = callPackage ../applications/misc/ocropus { };
|
||||||
|
Loading…
Reference in New Issue
Block a user