Unverified Commit 905705a2 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #261329 from abathur/speech_tools_darwin

speech-tools: fix darwin build
parents 733302ed 1ee5ffc1
Loading
Loading
Loading
Loading
+30 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, alsa-lib, ncurses }:
{ lib
, stdenv
, fetchurl
, fetchpatch
, ncurses
, alsa-lib
, CoreServices
, AudioUnit
, Cocoa
}:

stdenv.mkDerivation rec {
  pname = "speech_tools";
@@ -9,7 +18,25 @@ stdenv.mkDerivation rec {
    sha256 = "1k2xh13miyv48gh06rgsq2vj25xwj7z6vwq9ilsn8i7ig3nrgzg4";
  };

  buildInputs = [ alsa-lib ncurses ];
  patches = [
    # Fix build on Apple Silicon. Remove in the next release.
    (fetchpatch {
      url = "https://github.com/festvox/speech_tools/commit/06141f69d21bf507a9becb5405265dc362edb0df.patch";
      hash = "sha256-tRestCBuRhak+2ccsB6mvDxGm/TIYX4eZ3oppCOEP9s=";
    })
  ];

  buildInputs = [
    ncurses
  ] ++ lib.optionals stdenv.isLinux [
    alsa-lib
  ] ++ lib.optionals stdenv.isDarwin [
    CoreServices
    AudioUnit
    Cocoa
  ];

  makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "CXX=${stdenv.cc.targetPrefix}c++" ];

  # Workaround build failure on -fno-common toolchains:
  #   ld: libestools.a(editline.o):(.bss+0x28): multiple definition of
@@ -42,7 +69,7 @@ stdenv.mkDerivation rec {
  meta = with lib; {
    description = "Text-to-speech engine";
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    platforms = platforms.unix;
    license = licenses.free;
  };

+3 −1
Original line number Diff line number Diff line
@@ -25111,7 +25111,9 @@ with pkgs;
  speechd = callPackage ../development/libraries/speechd { };
  speech-tools = callPackage ../development/libraries/speech-tools { };
  speech-tools = callPackage ../development/libraries/speech-tools {
    inherit (darwin.apple_sdk.frameworks) CoreServices AudioUnit Cocoa;
  };
  speex = callPackage ../development/libraries/speex {
    fftw = fftwFloat;