about summary refs log tree commit diff
path: root/pkgs/development/libraries/libtheora/default.nix
blob: 87e75e55da79da8ef659e271e7e0885ba2f3b2c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
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];
}