nixpkgs/pkgs/tools/audio/picotts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
805 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, popt }:
2019-02-19 08:21:46 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-08-12 19:47:47 +00:00
pname = "picotts";
version = "unstable-2018-10-19";
2019-02-19 08:21:46 +00:00
src = fetchFromGitHub {
repo = "picotts";
owner = "naggety";
rev = "2f86050dc5da9ab68fc61510b594d8e6975c4d2d";
sha256 = "1k2mdv9llkh77jr4qr68yf0zgjqk87np35fgfmnc3rpdp538sccl";
};
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libtool popt ];
sourceRoot = "${finalAttrs.src.name}/pico";
2019-02-19 08:21:46 +00:00
preConfigure = "./autogen.sh";
meta = {
description = "Text to speech voice sinthesizer from SVox";
homepage = "https://github.com/naggety/picotts";
2021-01-15 09:19:50 +00:00
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.canndrew ];
platforms = lib.platforms.linux;
2023-11-23 21:09:35 +00:00
mainProgram = "pico2wave";
2019-02-19 08:21:46 +00:00
};
})