2015-03-25 15:10:08 -07:00
|
|
|
{stdenv, fetchurl, yasm, enable10bit ? false}:
|
2010-04-30 01:33:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-03 12:41:37 -08:00
|
|
|
version = "snapshot-20141218-2245-stable";
|
|
|
|
name = "x264-20141218-2245";
|
2008-05-21 17:18:45 -07:00
|
|
|
|
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";
|
2015-02-03 12:41:37 -08:00
|
|
|
sha256 = "1gp1f0382vh2hmgc23ldqyywcfljg8lsgl2849ymr14r6gxfh69m";
|
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" ]
|
2015-03-25 15:10:08 -07:00
|
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic"
|
|
|
|
++ stdenv.lib.optional (enable10bit) "--bit-depth=10";
|
2010-04-30 14:58:47 -07:00
|
|
|
|
|
|
|
buildInputs = [ yasm ];
|
2008-05-21 17:18:45 -07:00
|
|
|
|
2015-03-25 15:13:47 -07:00
|
|
|
meta = with stdenv.lib; {
|
2011-04-17 10:10:37 -07:00
|
|
|
description = "library for encoding H264/AVC video streams";
|
2015-03-25 15:13:47 -07:00
|
|
|
homepage = http://www.videolan.org/developers/x264.html;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
2008-05-21 17:18:45 -07:00
|
|
|
};
|
|
|
|
}
|