2021-09-04 15:56:22 +01:00
|
|
|
{ stdenv, lib, fetchFromGitLab, nasm
|
2021-04-08 06:59:56 +01:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2010-04-30 09:33:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 18:01:43 +01:00
|
|
|
pname = "x264";
|
2021-09-04 15:56:22 +01:00
|
|
|
version = "unstable-2021-06-13";
|
2008-05-22 01:18:45 +01:00
|
|
|
|
2021-09-04 15:56:22 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "code.videolan.org";
|
|
|
|
owner = "videolan";
|
|
|
|
repo = pname;
|
|
|
|
rev = "5db6aa6cab1b146e07b60cc1736a01f21da01154";
|
|
|
|
sha256 = "0swyrkz6nvajivxvrr08py0jrfcsjvpxw78xm1k5gd9xbdrxvknh";
|
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
|
|
|
'';
|
|
|
|
|
2021-04-08 10:09:32 +01:00
|
|
|
configureFlags = lib.optional enableShared "--enable-shared"
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
|
|
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
2010-04-30 22:58:47 +01:00
|
|
|
|
2021-11-21 01:50:41 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isx86 nasm;
|
2008-05-22 01:18:45 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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";
|
2022-02-06 17:10:57 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-03-25 22:13:47 +00:00
|
|
|
platforms = platforms.unix;
|
2019-05-18 18:01:43 +01:00
|
|
|
maintainers = with maintainers; [ spwhitt tadeokondrak ];
|
2008-05-22 01:18:45 +01:00
|
|
|
};
|
|
|
|
}
|