biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / svox / default.nix
blobacd1de1a20c9ebe252be25d0d5c85babb00f88dd
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, popt }:
3 stdenv.mkDerivation {
4   pname = "svox";
5   version = "2018-02-14";
7   # basically took the source code from android and borrowed autotool patches from debian
8   src = fetchFromGitHub {
9     owner = "naggety";
10     repo = "picotts";
11     rev = "e3ba46009ee868911fa0b53db672a55f9cc13b1c";
12     sha256 = "0k3m7vh1ak9gmxd83x29cvhzfkybgz5hnlhd9xj19l1bjyx84s8v";
13   };
15   postPatch = ''
16     cd pico
17   '';
19   buildInputs = [ popt ];
21   nativeBuildInputs = [ autoreconfHook ];
23   meta = with lib; {
24     description = "Text-to-speech engine";
25     homepage = "https://android.googlesource.com/platform/external/svox";
26     platforms = platforms.linux;
27     license = licenses.asl20;
28     maintainers = with maintainers; [ abbradar ];
29     mainProgram = "pico2wave";
30   };