nixpkgs/pkgs/development/libraries/libvorbis/default.nix
Eelco Dolstra 419f172ddb * Added Ogg Theora support to MPlayer.
svn path=/nixpkgs/trunk/; revision=2245
2005-02-16 16:18:43 +00:00

11 lines
256 B
Nix

{stdenv, fetchurl, libogg}:
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";
};
buildInputs = [libogg];
}