2015-03-25 23:10:08 +01:00
|
|
|
{stdenv, fetchurl, yasm, enable10bit ? false}:
|
2010-04-30 10:33:47 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-03 21:41:37 +01:00
|
|
|
version = "snapshot-20141218-2245-stable";
|
|
|
|
name = "x264-20141218-2245";
|
2008-05-22 02:18:45 +02:00
|
|
|
|
2010-04-30 10:33:47 +02:00
|
|
|
src = fetchurl {
|
2008-05-22 02:18:45 +02:00
|
|
|
url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
|
2015-02-03 21:41:37 +01:00
|
|
|
sha256 = "1gp1f0382vh2hmgc23ldqyywcfljg8lsgl2849ymr14r6gxfh69m";
|
2008-05-22 02:18:45 +02:00
|
|
|
};
|
|
|
|
|
2010-04-30 10:33:47 +02:00
|
|
|
patchPhase = ''
|
2010-04-30 12:47:53 +02:00
|
|
|
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
|
2010-04-30 10:33:47 +02:00
|
|
|
'';
|
2008-10-14 15:35:25 +02:00
|
|
|
|
2010-09-01 10:34:44 +02:00
|
|
|
configureFlags = [ "--enable-shared" ]
|
2015-03-25 23:10:08 +01:00
|
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic"
|
|
|
|
++ stdenv.lib.optional (enable10bit) "--bit-depth=10";
|
2010-04-30 23:58:47 +02:00
|
|
|
|
|
|
|
buildInputs = [ yasm ];
|
2008-05-22 02:18:45 +02:00
|
|
|
|
2013-05-12 13:42:27 +02:00
|
|
|
meta = {
|
2011-04-17 19:10:37 +02:00
|
|
|
description = "library for encoding H264/AVC video streams";
|
|
|
|
homepage = http://www.videolan.org/developers/x264.html;
|
|
|
|
license = "GPL";
|
2008-05-22 02:18:45 +02:00
|
|
|
};
|
|
|
|
}
|