2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, popt }:
|
2016-04-22 23:20:17 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "svox";
|
2020-06-01 13:56:04 +00:00
|
|
|
version = "2018-02-14";
|
2016-04-22 23:20:17 +00:00
|
|
|
|
2020-06-01 13:56:04 +00:00
|
|
|
# basically took the source code from android and borrowed autotool patches from debian
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "naggety";
|
|
|
|
repo = "picotts";
|
|
|
|
rev = "e3ba46009ee868911fa0b53db672a55f9cc13b1c";
|
|
|
|
sha256 = "0k3m7vh1ak9gmxd83x29cvhzfkybgz5hnlhd9xj19l1bjyx84s8v";
|
2016-04-22 23:20:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
cd pico
|
|
|
|
'';
|
|
|
|
|
2020-06-01 13:56:04 +00:00
|
|
|
buildInputs = [ popt ];
|
2016-04-22 23:20:17 +00:00
|
|
|
|
2020-06-01 13:56:04 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2016-04-22 23:20:17 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-04-22 23:20:17 +00:00
|
|
|
description = "Text-to-speech engine";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://android.googlesource.com/platform/external/svox";
|
2016-04-22 23:20:17 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "pico2wave";
|
2016-04-22 23:20:17 +00:00
|
|
|
};
|
|
|
|
}
|