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

View file

@ -2877,6 +2877,11 @@
github = "nocoolnametom";
name = "Tom Doggett";
};
noneucat = {
email = "andy@lolc.at";
github = "noneucat";
name = "Andy Chun";
};
notthemessiah = {
email = "brian.cohen.88@gmail.com";
github = "notthemessiah";

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 ];
};
}

View file

@ -17277,6 +17277,10 @@ with pkgs;
minitube = libsForQt5.callPackage ../applications/video/minitube { };
mimic = callPackage ../applications/audio/mimic {
pulseaudioSupport = config.pulseaudio or false;
};
mimms = callPackage ../applications/audio/mimms {};
meh = callPackage ../applications/graphics/meh {};