nixpkgs/pkgs/development/libraries/libtheora/default.nix
Yury G. Kudryashov a7703662a4 Merged with trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=10145
2008-01-15 00:55:21 +00:00

11 lines
313 B
Nix

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