2020-01-04 01:06:13 +00:00
|
|
|
{ stdenv, lib, fetchurl, nasm }:
|
2010-04-30 09:33:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 18:01:43 +01:00
|
|
|
pname = "x264";
|
2020-01-30 11:33:42 +00:00
|
|
|
version = "20191217-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";
|
2020-01-30 11:33:42 +00:00
|
|
|
sha256 = "0q214q4rhbhigyx3dfhp6d5v5gzln01cxccl153ps5ih567mqjdj";
|
2008-05-22 01:18:45 +01:00
|
|
|
};
|
|
|
|
|
2020-01-04 01:06:13 +00:00
|
|
|
# Upstream ./configure greps for (-mcpu|-march|-mfpu) in CFLAGS, which in nix
|
|
|
|
# is put in the cc wrapper anyway.
|
|
|
|
patches = [ ./disable-arm-neon-default.patch ];
|
|
|
|
|
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
|
|
|
|
2020-01-04 01:06:13 +00:00
|
|
|
preConfigure = lib.optionalString (stdenv.buildPlatform.isx86_64 || stdenv.hostPlatform.isi686) ''
|
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
|
2020-01-30 11:52:21 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isAarch32) ''
|
|
|
|
export AS=$CC
|
2017-07-21 13:40:23 +01:00
|
|
|
'';
|
|
|
|
|
2010-09-01 09:34:44 +01:00
|
|
|
configureFlags = [ "--enable-shared" ]
|
2020-01-04 01:06:13 +00:00
|
|
|
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic"
|
|
|
|
++ stdenv.lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
2010-04-30 22:58:47 +01:00
|
|
|
|
2020-01-04 01:06:13 +00:00
|
|
|
nativeBuildInputs = lib.optional (stdenv.hostPlatform.isx86_64 || stdenv.hostPlatform.isi686) 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.videolan.org/developers/x264.html";
|
2015-03-25 22:13:47 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|