(define-module (ongakunix packages speech) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system cmake) #:use-module (guix licenses) #:use-module (gnu packages gawk) #:use-module (gnu packages pulseaudio)) (define-public world (package (name "world") (version "0.3.1") (source (origin (method url-fetch) (uri (string-append "http://ongakunix.isengaara.de/ongakunix/pool/main/w/world/world_" version ".orig.tar.gz")) (sha256 (base32 "0d23rdk9hdwj6q981n3wm6472ygs0mlzkqk4b49w1ifa5l600kfc")))) (build-system cmake-build-system) (inputs `(("libsndfile",pulseaudio))) (synopsis "Free Speech synthesizer framework") (description "Vocoder") (home-page "http://ongakunix.isengaara.de/") (license gpl3+)))