diff --git a/pkgs/development/octave-modules/gsl/default.nix b/pkgs/development/octave-modules/gsl/default.nix index b01509fb2294..41aee3c2eb58 100644 --- a/pkgs/development/octave-modules/gsl/default.nix +++ b/pkgs/development/octave-modules/gsl/default.nix @@ -1,6 +1,5 @@ { buildOctavePackage, - stdenv, lib, fetchurl, gsl, @@ -24,8 +23,8 @@ buildOctavePackage rec { license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ KarlJoad ]; description = "Octave bindings to the GNU Scientific Library"; - # error: use of undeclared identifier 'feval'; did you mean 'octave::feval'? - # error: no member named 'is_real_type' in 'octave_value' - broken = stdenv.hostPlatform.isDarwin; + # When used in an `octave.withPackages` environment, octave fails to find + # libgsl.so from some reason. + broken = true; }; }