Trying to add mumble. It still does not build.

svn path=/nixpkgs/trunk/; revision=25890
This commit is contained in:
Lluís Batlle i Rossell
2011-02-10 19:23:27 +00:00
parent 62759cd550
commit 951b65cf9c
4 changed files with 78 additions and 0 deletions

View File

@@ -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+";
};
}