add speex, without Ogg support (if anyone wants that, just add it)

svn path=/nixpkgs/trunk/; revision=4308
This commit is contained in:
Armijn Hemel 2005-11-22 22:32:18 +00:00
parent 2b76e2955d
commit b4d760228e
2 changed files with 13 additions and 0 deletions

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "speex-1.0.5";
src = fetchurl {
url = http://downloads.us.xiph.org/releases/speex/speex-1.0.5.tar.gz;
md5 = "01d6a2de0a88a861304bf517615dea79";
};
}

@ -735,6 +735,10 @@ rec {
inherit fetchurl stdenv libogg;
};
speex = (import ../development/libraries/speex) {
inherit fetchurl stdenv;
};
libtheora = (import ../development/libraries/libtheora) {
inherit fetchurl stdenv libogg libvorbis;
};