nixpkgs/pkgs/development/libraries/libtheora/default.nix
Armijn Hemel 6ae377d514 update to 1.0
svn path=/nixpkgs/trunk/; revision=13187
2008-11-04 16:13:55 +00:00

11 lines
303 B
Nix

{stdenv, fetchurl, libogg, libvorbis}:
stdenv.mkDerivation {
name = "libtheora-1.0";
src = fetchurl {
url = http://downloads.xiph.org/releases/theora/libtheora-1.0.tar.gz;
sha256 = "0j5hv0pfsiwa2qq5d647py4g7ixnax1v47xc3aj5sa9v2iknib6m";
};
propagatedBuildInputs = [libogg libvorbis];
}