2015-03-25 15:10:08 -07:00
|
|
|
{stdenv, fetchurl, yasm, enable10bit ? false}:
|
2010-04-30 01:33:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-18 04:27:48 -07:00
|
|
|
version = "20160615-2245";
|
2016-02-07 04:18:48 -08:00
|
|
|
name = "x264-${version}";
|
2008-05-21 17:18:45 -07:00
|
|
|
|
2010-04-30 01:33:47 -07:00
|
|
|
src = fetchurl {
|
2016-02-07 04:18:48 -08:00
|
|
|
url = "http://download.videolan.org/x264/snapshots/x264-snapshot-${version}-stable.tar.bz2";
|
2016-06-18 04:27:48 -07:00
|
|
|
sha256 = "0w5l77gm8bsmafzimzyc5s27kcw79r6nai3bpccqy0spyxhjsdc2";
|
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
|
|
|
|
2015-10-11 07:25:44 -07:00
|
|
|
outputs = [ "out" "lib" ]; # leaving 52 kB of headers
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|