mimic: init at 1.2.0.2

This commit is contained in:
Andy Chun @noneucat
2018-08-15 12:43:37 -07:00
parent 3f59f828d0
commit 69e96f65ed
3 changed files with 44 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{ stdenv, autoreconfHook, fetchFromGitHub, pkgconfig
, alsaLib, libtool, icu
, pulseaudioSupport ? true, libpulseaudio }:
stdenv.mkDerivation rec {
name = "mimic-${version}";
version = "1.2.0.2";
src = fetchFromGitHub {
rev = version;
repo = "mimic";
owner = "MycroftAI";
sha256 = "1wkpbwk88lsahzkc7pzbznmyy0lc02vsp0vkj8f1ags1gh0lc52j";
};
nativeBuildInputs = [
autoreconfHook
pkgconfig
];
buildInputs = [
alsaLib
libtool
icu
] ++ stdenv.lib.optional pulseaudioSupport libpulseaudio;
meta = {
description = "Mycroft's TTS engine, based on CMU's Flite (Festival Lite)";
homepage = https://mimic.mycroft.ai/;
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.noneucat ];
};
}