summary refs log tree commit diff
path: root/pkgs/development/libraries/libtheora/default.nix
blob: cd26c33928a6100f3d8bd10c2354f51e9c41535f (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://nix.cs.uu.nl/dist/tarballs/libtheora-1.0alpha7.tar.bz2;
    md5 = "1bc851e39e4b16977131d5e5f769f48b";
  };
  propagatedBuildInputs = [libogg libvorbis];
}