nixpkgs/pkgs/by-name/fl/flite/package.nix
2024-07-15 13:35:55 -04:00

78 lines
1.9 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
alsa-lib,
libpulseaudio,
nix-update-script,
testers,
audioBackend ? "pulseaudio",
}:
assert lib.assertOneOf "audioBackend" audioBackend [
"alsa"
"pulseaudio"
];
stdenv.mkDerivation (finalAttrs: {
pname = "flite";
version = "2.2";
outputs = [
"bin"
"dev"
"lib"
"out"
];
src = fetchFromGitHub {
owner = "festvox";
repo = "flite";
rev = "v${finalAttrs.version}";
hash = "sha256-Tq5pyg3TiQt8CPqGXTyLOaGgaeLTmPp+Duw3+2VAF9g=";
};
# https://github.com/festvox/flite/pull/60.
# Replaces `ar` with `$(AR)` in config/common_make_rules.
# Improves cross-compilation compatibility.
patches = [
(fetchpatch {
url = "https://github.com/festvox/flite/commit/54c65164840777326bbb83517568e38a128122ef.patch";
hash = "sha256-hvKzdX7adiqd9D+9DbnfNdqEULg1Hhqe1xElYxNM1B8=";
})
];
buildInputs = lib.optional stdenv.isLinux (
{
alsa = alsa-lib;
pulseaudio = libpulseaudio;
}
.${audioBackend} or (throw "${audioBackend} is not a supported backend!")
);
configureFlags = [
"--enable-shared"
] ++ lib.optionals stdenv.isLinux [ "--with-audio=${audioBackend}" ];
# main/Makefile creates and removes 'flite_voice_list.c' from multiple targets:
# make[1]: *** No rule to make target 'flite_voice_list.c', needed by 'all'. Stop
enableParallelBuilding = false;
passthru = {
tests.version = testers.testVersion {
# `flite` does have a `--version` command, but it returns 1
command = "flite --help";
package = finalAttrs.finalPackage;
};
updateScript = nix-update-script { };
};
meta = {
description = "Small, fast run-time speech synthesis engine";
homepage = "http://www.festvox.org/flite/";
license = lib.licenses.bsdOriginal;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "flite";
};
})