2005-02-16 17:18:43 +01:00
|
|
|
{stdenv, fetchurl, libogg, libvorbis}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-11-04 17:13:55 +01:00
|
|
|
name = "libtheora-1.0";
|
2005-02-16 17:18:43 +01:00
|
|
|
src = fetchurl {
|
2008-11-04 17:13:55 +01:00
|
|
|
url = http://downloads.xiph.org/releases/theora/libtheora-1.0.tar.gz;
|
|
|
|
sha256 = "0j5hv0pfsiwa2qq5d647py4g7ixnax1v47xc3aj5sa9v2iknib6m";
|
2005-02-16 17:18:43 +01:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [libogg libvorbis];
|
|
|
|
}
|