2010-04-30 14:58:47 -07:00
|
|
|
{stdenv, fetchurl, yasm}:
|
2010-04-30 01:33:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-06-24 15:55:25 -07:00
|
|
|
version = "snapshot-20100624-2245";
|
2008-05-21 17:18:45 -07:00
|
|
|
name = "x264-${version}";
|
|
|
|
|
2010-04-30 01:33:47 -07:00
|
|
|
src = fetchurl {
|
2008-05-21 17:18:45 -07:00
|
|
|
url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
|
2010-06-24 15:55:25 -07:00
|
|
|
sha256 = "0hva3j7h99hl3l1p32a1j6p35s5aakkg3plp8xx1wk6qplxhkqsq";
|
2008-05-21 17:18:45 -07:00
|
|
|
};
|
|
|
|
|
2010-04-30 01:33:47 -07:00
|
|
|
patchPhase = ''
|
2010-04-30 03:47:53 -07:00
|
|
|
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
|
2010-04-30 01:33:47 -07:00
|
|
|
'';
|
2008-10-14 06:35:25 -07:00
|
|
|
|
2010-09-01 01:34:44 -07:00
|
|
|
configureFlags = [ "--enable-shared" ]
|
|
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic";
|
2010-04-30 14:58:47 -07:00
|
|
|
|
|
|
|
buildInputs = [ yasm ];
|
2008-05-21 17:18:45 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "library for encoding H264/AVC video streams";
|
|
|
|
homepage = http://www.videolan.org/developers/x264.html;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|