From fe5e896f470d120834ae4d9abb643486c71f45cb Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 26 Dec 2021 23:41:16 +0100 Subject: [PATCH] octavePackages.tisean: Mark broken on Darwin --- pkgs/development/octave-modules/tisean/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/octave-modules/tisean/default.nix b/pkgs/development/octave-modules/tisean/default.nix index b21ef0a5f56a..bfe01f10f2ff 100644 --- a/pkgs/development/octave-modules/tisean/default.nix +++ b/pkgs/development/octave-modules/tisean/default.nix @@ -1,4 +1,5 @@ { buildOctavePackage +, stdenv , lib , fetchurl # Octave dependencies @@ -29,5 +30,7 @@ buildOctavePackage rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ KarlJoad ]; description = "Port of TISEAN 3.0.1"; + # Some gfortran symbols claimed to be missing + broken = stdenv.isDarwin; }; }