* Added Ogg Theora support to MPlayer.
svn path=/nixpkgs/trunk/; revision=2245
This commit is contained in:
10
pkgs/development/libraries/libtheora/default.nix
Normal file
10
pkgs/development/libraries/libtheora/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl, libogg, libvorbis}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libtheora-1.0alpha4";
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/theora/libtheora-1.0alpha4.tar.bz2;
|
||||
md5 = "a71ac42ec0f848da327930841a80ff2b";
|
||||
};
|
||||
propagatedBuildInputs = [libogg libvorbis];
|
||||
}
|
||||
@@ -4,8 +4,7 @@ stdenv.mkDerivation {
|
||||
name = "libvorbis-1.1.0";
|
||||
src = fetchurl {
|
||||
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libvorbis-1.1.0.tar.gz;
|
||||
md5 = "bb764aeabde613d1a424a29b1f15e7e6" ;
|
||||
md5 = "bb764aeabde613d1a424a29b1f15e7e6";
|
||||
};
|
||||
|
||||
buildInputs = [libogg];
|
||||
buildInputs = [libogg];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user