x264 codec lib added

svn path=/nixpkgs/trunk/; revision=11876
This commit is contained in:
Marc Weber 2008-05-22 00:18:45 +00:00
parent 7cc066df68
commit bd0df285fa
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,18 @@
args:
args.stdenv.mkDerivation rec {
version = "snapshot-20080521-2245";
name = "x264-${version}";
src = args.fetchurl {
url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
sha256 = "07khxih1lmhvrzlaksqmaghbi8w2yyjrjcw867gi2y4z1h0ndhks";
};
buildInputs =(with args; []);
meta = {
description = "library for encoding H264/AVC video streams";
homepage = http://www.videolan.org/developers/x264.html;
license = "GPL";
};
}

View File

@ -3291,6 +3291,10 @@ let pkgs = rec {
wxGTK28 = wxGTK28deps null;
x264 = import ../development/libraries/x264 {
inherit fetchurl stdenv;
};
Xaw3d = import ../development/libraries/Xaw3d {
inherit fetchurl stdenv x11 bison;
flex = flex2533;