3af28ab76e
svn path=/nixpkgs/trunk/; revision=5636
11 lines
293 B
Nix
11 lines
293 B
Nix
{stdenv, fetchurl, libogg, libvorbis}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libtheora-1.0alpha7";
|
|
src = fetchurl {
|
|
url = http://downloads.xiph.org/releases/theora/libtheora-1.0alpha7.tar.bz2;
|
|
md5 = "1bc851e39e4b16977131d5e5f769f48b";
|
|
};
|
|
propagatedBuildInputs = [libogg libvorbis];
|
|
}
|