Trying to add mumble. It still does not build.
svn path=/nixpkgs/trunk/; revision=25890
This commit is contained in:
18
pkgs/development/libraries/dotconf/default.nix
Normal file
18
pkgs/development/libraries/dotconf/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ fetchurl, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dotconf-" + version;
|
||||
version = "1.0.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.azzit.de/dotconf/download/v1.0/dotconf-1.0.13.tar.gz";
|
||||
sha256 = "0rcvi743jgnrq2p5gknnvsqiv47479y5gyc2g9pz7bp7v7bzlmc9";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A configuration parser library";
|
||||
|
||||
homepage = http://www.azzit.de/dotconf/;
|
||||
license = "LGPLv21+";
|
||||
};
|
||||
}
|
||||
20
pkgs/development/libraries/speechd/default.nix
Normal file
20
pkgs/development/libraries/speechd/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user