summary refs log tree commit diff
path: root/pkgs/development/libraries/speechd
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-10 19:23:27 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-02-10 19:23:27 +0000
commit951b65cf9c6fdc7273beaebb51c70e18b0fbdb08 (patch)
tree4993c7229c189c86176b2c08208493a00786359e /pkgs/development/libraries/speechd
parent62759cd5505cb72fd97c8888d558e8d2e5c8c59b (diff)
downloadnixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.gz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.bz2
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.lz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.xz
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.tar.zst
nixpkgs-951b65cf9c6fdc7273beaebb51c70e18b0fbdb08.zip
Trying to add mumble. It still does not build.
svn path=/nixpkgs/trunk/; revision=25890
Diffstat (limited to 'pkgs/development/libraries/speechd')
-rw-r--r--pkgs/development/libraries/speechd/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/speechd/default.nix b/pkgs/development/libraries/speechd/default.nix
new file mode 100644
index 00000000000..0e542b353f6
--- /dev/null
+++ b/pkgs/development/libraries/speechd/default.nix
@@ -0,0 +1,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+";
+  };
+}