nixpkgs/pkgs/applications/audio/svox/default.nix

31 lines
778 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, popt }:
2016-04-22 23:20:17 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
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
meta = with lib; {
2016-04-22 23:20:17 +00:00
description = "Text-to-speech engine";
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 ];
};
}