nixpkgs/pkgs/development/libraries/x264/default.nix
Marc Weber bd0df285fa x264 codec lib added
svn path=/nixpkgs/trunk/; revision=11876
2008-05-22 00:18:45 +00:00

19 lines
496 B
Nix

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";
};
}