mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
commit
eb3c036413
@ -1,16 +1,46 @@
|
|||||||
{ lib, stdenv, fetchurl, pkg-config
|
{ lib
|
||||||
, libsndfile, libpulseaudio
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, libtool
|
||||||
|
, libsndfile
|
||||||
|
, libpulseaudio
|
||||||
|
, espeak-ng
|
||||||
|
, sonic
|
||||||
|
, utf8cpp
|
||||||
|
, AudioUnit
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "5.8.2";
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
pname = "ekho";
|
pname = "ekho";
|
||||||
inherit version;
|
version = "9.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hgneng";
|
||||||
|
repo = "ekho";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-VYN9tR3BJXd3UA0V5vqQJNItJe1e1knZ+S7tLeaeYYk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
CXXFLAGS = [
|
||||||
|
"-O0"
|
||||||
|
"-I${lib.getDev utf8cpp}/include/utf8cpp"
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config autoconf automake libtool ];
|
||||||
|
|
||||||
|
buildInputs = [ libsndfile libpulseaudio espeak-ng sonic utf8cpp ]
|
||||||
|
++ lib.optionals stdenv.isDarwin [ AudioUnit ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Chinese text-to-speech software";
|
description = "Chinese text-to-speech software";
|
||||||
homepage = "http://www.eguidedog.net/ekho.php";
|
homepage = "http://www.eguidedog.net/ekho.php";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Ekho (余音) is a free, open source and multilingual text-to-speech (TTS)
|
Ekho (余音) is a free, open source and multilingual text-to-speech (TTS)
|
||||||
software. It supports Cantonese (Chinese dialect spoken in Hong Kong and
|
software. It supports Cantonese (Chinese dialect spoken in Hong Kong and
|
||||||
@ -18,22 +48,8 @@ in stdenv.mkDerivation rec {
|
|||||||
(a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before
|
(a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before
|
||||||
Yuan Dynasty) and Korean (in trial).
|
Yuan Dynasty) and Korean (in trial).
|
||||||
'';
|
'';
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
hydraPlatforms = [];
|
maintainers = with maintainers; [ aaronjheng ];
|
||||||
};
|
};
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://sourceforge/e-guidedog/Ekho/${version}/${pname}-${version}.tar.xz";
|
|
||||||
sha256 = "0ym6lpcpsvwvsiwlzkl1509a2hljwcw7synngrmqjq1n49ww00nj";
|
|
||||||
};
|
|
||||||
|
|
||||||
preConfigure = with lib; ''
|
|
||||||
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE ${optionalString stdenv.is64bit "-D_x86_64"}"
|
|
||||||
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DEKHO_DATA_PATH=\"$out/share/ekho-data\""
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
|
||||||
|
|
||||||
buildInputs = [ libsndfile libpulseaudio ];
|
|
||||||
}
|
}
|
||||||
|
@ -31310,7 +31310,9 @@ with pkgs;
|
|||||||
|
|
||||||
oed = callPackage ../applications/editors/oed { };
|
oed = callPackage ../applications/editors/oed { };
|
||||||
|
|
||||||
ekho = callPackage ../applications/audio/ekho { };
|
ekho = callPackage ../applications/audio/ekho {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) AudioUnit;
|
||||||
|
};
|
||||||
|
|
||||||
electron-cash = libsForQt5.callPackage ../applications/misc/electron-cash { };
|
electron-cash = libsForQt5.callPackage ../applications/misc/electron-cash { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user