Adding xvid, to ffmpeg and mplayer.

svn path=/nixpkgs/trunk/; revision=21469
This commit is contained in:
Lluís Batlle i Rossell
2010-04-30 21:47:09 +00:00
parent fe7945b7fb
commit b3870f0148
4 changed files with 34 additions and 5 deletions
@@ -0,0 +1,21 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "xvidcore-1.2.2";
src = fetchurl {
url = http://downloads.xvid.org/downloads/xvidcore-1.2.2.tar.bz2;
sha256 = "04bd1clv90i5pdwh6mz3mskyzmxyx5l2nx7lyyb8nhw9whnn0ap4";
};
preConfigure = ''
cd build/generic
'';
meta = {
description = "MPEG-4 video codec for PC";
homepage = http://www.xvid.org/;
license = "GPLv2+";
};
}