From b17386836df954570a4f385c77fb99fed386e889 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 26 Dec 2021 23:41:06 +0100 Subject: [PATCH] octavePackages.strings: Mark broken on Darwin --- pkgs/development/octave-modules/strings/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/octave-modules/strings/default.nix b/pkgs/development/octave-modules/strings/default.nix index 7b556272f5d..cf5acd36855 100644 --- a/pkgs/development/octave-modules/strings/default.nix +++ b/pkgs/development/octave-modules/strings/default.nix @@ -1,4 +1,5 @@ { buildOctavePackage +, stdenv , lib , fetchurl , pcre @@ -33,5 +34,7 @@ buildOctavePackage rec { # Claims to have a freebsd license, but I found none. maintainers = with maintainers; [ KarlJoad ]; description = "Additional functions for manipulation and analysis of strings"; + # Some pcre symbols claimed to be missing + broken = stdenv.isDarwin; }; }