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