Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. { stdenv, fetchFromGitHub, automake, autoconf, libtool, libao }:
  2.  
  3. stdenv.mkDerivation rec {
  4. name = "nanotts-${version}";
  5. version = "unstable-2017-11-02";
  6.  
  7. src = fetchFromGitHub {
  8. owner = "gmn";
  9. repo = "nanotts";
  10. rev = "e3165556ec2ab26b4f42fe9eab652006704aefd0";
  11. sha256 = "0wh62zr16p04lsq1d38hiq8qzp2f1c05nvhj6q5r3wbx5h0a2rc5";
  12. };
  13.  
  14. installTargets = "nanotts";
  15.  
  16. nativeBuildInputs = [ automake autoconf libtool libao ];
  17.  
  18. meta = with stdenv.lib; {
  19. description = "Speech synthesizer commandline utility that improves pico2wave, included with SVOX PicoTTS";
  20. homepage = https://github.com/gmn/nanotts;
  21. license = licenses.apache2;
  22. maintainers = [ maintainers.kroell ];
  23. };
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement