nixpkgs/pkgs/development/libraries/libtheora/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

11 lines
285 B
Nix

{stdenv, fetchurl, libogg, libvorbis}:
stdenv.mkDerivation {
name = "libtheora-1.0alpha7";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/libtheora-1.0alpha7.tar.bz2;
md5 = "1bc851e39e4b16977131d5e5f769f48b";
};
propagatedBuildInputs = [libogg libvorbis];
}