mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
purePackages.octave: Use octaveHg
Pure's Octave package compiles but crashes with Octave 4.2 due to an upstream bug which is fixed in mercurial.
This commit is contained in:
parent
813eb41cf6
commit
68c56c46fb
@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
|
||||
description = "An Octave module for the Pure programming language";
|
||||
homepage = http://puredocs.bitbucket.org/pure-octave.html;
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
# This is set to none for now because it does not work with the
|
||||
# current stable version of Octave.
|
||||
platforms = stdenv.lib.platforms.none;
|
||||
maintainers = with stdenv.lib.maintainers; [ asppsa ];
|
||||
};
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ callPackage }:
|
||||
{ callPackage, octaveHg }:
|
||||
|
||||
rec {
|
||||
audio = callPackage ../development/pure-modules/audio { };
|
||||
@ -19,7 +19,7 @@ rec {
|
||||
lv2 = callPackage ../development/pure-modules/lv2 { };
|
||||
midi = callPackage ../development/pure-modules/midi { };
|
||||
mpfr = callPackage ../development/pure-modules/mpfr { };
|
||||
octave = callPackage ../development/pure-modules/octave { };
|
||||
octave = callPackage ../development/pure-modules/octave { octave = octaveHg; };
|
||||
odbc = callPackage ../development/pure-modules/odbc { };
|
||||
pandoc = callPackage ../development/pure-modules/pandoc { };
|
||||
rational = callPackage ../development/pure-modules/rational { };
|
||||
|
Loading…
Reference in New Issue
Block a user