summary refs log tree commit diff
path: root/pkgs/development/libraries/speechd/default.nix
blob: 0e542b353f674eed26d8695cb186a540f18b57cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, stdenv, dotconf, glib, pkgconfig }:

stdenv.mkDerivation rec {
  name = "speech-dispatcher-" + version;
  version = "0.7.1";

  src = fetchurl {
    url = "http://www.freebsoft.org/pub/projects/speechd/${name}.tar.gz";
    sha256 = "0laag72iw03545zggdzcr860b8q7w1vrjr3csd2ldps7jhlwzad8";
  };

  buildInputs = [ dotconf glib pkgconfig ];

  meta = {
    description = "Common interface to speech synthesis";

    homepage = http://www.freebsoft.org/speechd;
    license = "GPLv2+";
  };
}