x264 codec lib added
svn path=/nixpkgs/trunk/; revision=11876
This commit is contained in:
parent
7cc066df68
commit
bd0df285fa
18
pkgs/development/libraries/x264/default.nix
Normal file
18
pkgs/development/libraries/x264/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -3291,6 +3291,10 @@ let pkgs = rec {
|
|||||||
|
|
||||||
wxGTK28 = wxGTK28deps null;
|
wxGTK28 = wxGTK28deps null;
|
||||||
|
|
||||||
|
x264 = import ../development/libraries/x264 {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
Xaw3d = import ../development/libraries/Xaw3d {
|
Xaw3d = import ../development/libraries/Xaw3d {
|
||||||
inherit fetchurl stdenv x11 bison;
|
inherit fetchurl stdenv x11 bison;
|
||||||
flex = flex2533;
|
flex = flex2533;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user