x264 codec lib added
svn path=/nixpkgs/trunk/; revision=11876
This commit is contained in:
parent
7cc066df68
commit
bd0df285fa
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue