summary refs log tree commit diff
path: root/pkgs/tools/audio/picotts/default.nix
blob: 5c995f407a7b4e64b16d0a67a10e1f75421b3ccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, popt }:

stdenv.mkDerivation {
  pname = "picotts";
  version = "unstable-2018-10-19";

  src = fetchFromGitHub {
    repo = "picotts";
    owner = "naggety";
    rev = "2f86050dc5da9ab68fc61510b594d8e6975c4d2d";
    sha256 = "1k2mdv9llkh77jr4qr68yf0zgjqk87np35fgfmnc3rpdp538sccl";
  };
  nativeBuildInputs = [ autoconf automake ];
  buildInputs = [ libtool popt ];
  sourceRoot = "source/pico";
  preConfigure = "./autogen.sh";
  meta = {
    description = "Text to speech voice sinthesizer from SVox";
    homepage = "https://github.com/naggety/picotts";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.canndrew ];
    platforms = lib.platforms.linux;
  };
}