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