nixpkgs/pkgs/applications/audio/eflite/default.nix

52 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, flite, alsa-lib, debug ? false }:
2017-03-01 15:22:25 +00:00
stdenv.mkDerivation rec {
pname = "eflite";
2017-03-01 15:22:25 +00:00
version = "0.4.1";
2017-03-01 15:22:25 +00:00
src = fetchurl {
url = "https://sourceforge.net/projects/eflite/files/eflite/${version}/${pname}-${version}.tar.gz";
2017-03-01 15:22:25 +00:00
sha256 = "088p9w816s02s64grfs28gai3lnibzdjb9d1jwxzr8smbs2qbbci";
};
buildInputs = [ flite alsa-lib ];
configureFlags = [
"flite_dir=${flite}"
"--with-audio=alsa"
"--with-vox=cmu_us_kal16"
];
2017-03-01 15:22:25 +00:00
patches = [
(fetchpatch {
url = "https://sources.debian.org/data/main/e/eflite/0.4.1-8/debian/patches/cvs-update";
sha256 = "0r631vzmky7b7qyhm152557y4fr0xqrpi3y4w66fcn6p4rj03j05";
})
(fetchpatch {
url = "https://sources.debian.org/data/main/e/eflite/0.4.1-8/debian/patches/buf-overflow";
sha256 = "071qk133kb7n7bq6kxgh3p9bba6hcl1ixsn4lx8vp8klijgrvkmx";
})
(fetchpatch {
url = "https://sources.debian.org/data/main/e/eflite/0.4.1-8/debian/patches/link";
sha256 = "0p833dp4pdsya72bwh3syvkq85927pm6snxvx13lvcppisbhj0fc";
})
2017-03-01 15:22:25 +00:00
./format.patch
];
2021-01-15 13:21:58 +00:00
CFLAGS = lib.optionalString debug " -DDEBUG=2";
2017-03-01 15:22:25 +00:00
meta = {
homepage = "http://eflite.sourceforge.net";
description = "Speech server for screen readers";
2017-03-01 15:22:25 +00:00
longDescription = ''
EFlite is a speech server for Emacspeak and other screen
readers that allows them to interface with Festival Lite,
a free text-to-speech engine developed at the CMU Speech
Center as an off-shoot of Festival.
'';
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ jhhuh ];
2017-03-01 15:22:25 +00:00
};
}