summary refs log tree commit diff
path: root/pkgs/applications/audio/ekho
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2014-03-14 12:30:10 +0800
committer宋文武 <iyzsong@gmail.com>2014-03-14 13:18:19 +0800
commitaa428305381740f1c8f95cb8fb1ec02d1dcb50b5 (patch)
treee2dac30845aca8eb1f2759b7374928e4e096cb5a /pkgs/applications/audio/ekho
parent147e6ed4c96d290cd01944d3293712410709ea09 (diff)
downloadnixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar.gz
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar.bz2
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar.lz
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar.xz
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.tar.zst
nixlib-aa428305381740f1c8f95cb8fb1ec02d1dcb50b5.zip
add ekho 5.8.2, a Chinese TTS software
Diffstat (limited to 'pkgs/applications/audio/ekho')
-rw-r--r--pkgs/applications/audio/ekho/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ekho/default.nix b/pkgs/applications/audio/ekho/default.nix
new file mode 100644
index 000000000000..dd9b830be841
--- /dev/null
+++ b/pkgs/applications/audio/ekho/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig
+, libsndfile, pulseaudio
+}:
+
+let
+  version = "5.8.2";
+in stdenv.mkDerivation rec {
+  name = "ekho-${version}";
+
+  meta = with stdenv.lib; {
+    description = "Chinese text-to-speech software";
+    homepage    = "http://www.eguidedog.net/ekho.php";
+    longDescription = ''
+      Ekho (余音) is a free, open source and multilingual text-to-speech (TTS)
+      software. It supports Cantonese (Chinese dialect spoken in Hong Kong and
+      part of Guangdong province), Mandarin (standard Chinese), Zhaoan Hakka
+      (a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before
+      Yuan Dynasty) and Korean (in trial).
+    '';
+    license        = licenses.gpl2Plus;
+    platforms      = platforms.linux;
+    hydraPlatforms = [];
+    maintainers    = with maintainers; [ iyzsong ];
+  };
+
+  src = fetchurl {
+    url = "mirror://sourceforge/e-guidedog/Ekho/${version}/${name}.tar.xz";
+    sha256 = "0ym6lpcpsvwvsiwlzkl1509a2hljwcw7synngrmqjq1n49ww00nj";
+  };
+
+  preConfigure = with stdenv.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 = [ pkgconfig ];
+
+  buildInputs = [ libsndfile pulseaudio ];
+}