2019-05-18 10:01:43 -07:00
|
|
|
{ stdenv, fetchurl, nasm }:
|
2010-04-30 01:33:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 10:01:43 -07:00
|
|
|
pname = "x264";
|
|
|
|
version = "20190517-2245";
|
2008-05-21 17:18:45 -07:00
|
|
|
|
2010-04-30 01:33:47 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://download.videolan.org/x264/snapshots/x264-snapshot-${version}-stable.tar.bz2";
|
2019-05-18 10:01:43 -07:00
|
|
|
sha256 = "1xv41z04km3rf374xk3ny7v8ibr211ph0j5am0909ln63mphc48f";
|
2008-05-21 17:18:45 -07:00
|
|
|
};
|
|
|
|
|
2019-05-18 10:01:43 -07:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
2010-04-30 01:33:47 -07:00
|
|
|
'';
|
2008-10-14 06:35:25 -07:00
|
|
|
|
2019-05-18 10:01:43 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
2015-10-11 07:25:44 -07:00
|
|
|
|
2017-07-21 05:40:23 -07:00
|
|
|
preConfigure = ''
|
2019-05-18 10:01:43 -07:00
|
|
|
# `AS' is set to the binutils assembler, but we need nasm
|
2017-07-21 05:40:23 -07:00
|
|
|
unset AS
|
|
|
|
'';
|
|
|
|
|
2010-09-01 01:34:44 -07:00
|
|
|
configureFlags = [ "--enable-shared" ]
|
2019-05-18 10:01:43 -07:00
|
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic";
|
2010-04-30 14:58:47 -07:00
|
|
|
|
2019-05-18 10:01:43 -07:00
|
|
|
nativeBuildInputs = [ nasm ];
|
2008-05-21 17:18:45 -07:00
|
|
|
|
2015-03-25 15:13:47 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 03:53:46 -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;
|
2019-05-18 10:01:43 -07:00
|
|
|
maintainers = with maintainers; [ spwhitt tadeokondrak ];
|
2008-05-21 17:18:45 -07:00
|
|
|
};
|
|
|
|
}
|