mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
add speex, without Ogg support (if anyone wants that, just add it)
svn path=/nixpkgs/trunk/; revision=4308
This commit is contained in:
parent
2b76e2955d
commit
b4d760228e
9
pkgs/development/libraries/speex/default.nix
Normal file
9
pkgs/development/libraries/speex/default.nix
Normal file
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user