2022-09-17 08:13:55 +00:00
|
|
|
{ stdenv, lib, fetchFromGitLab, fetchpatch, nasm
|
2021-04-08 05:59:56 +00:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2010-04-30 08:33:47 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 17:01:43 +00:00
|
|
|
pname = "x264";
|
2021-09-04 14:56:22 +00:00
|
|
|
version = "unstable-2021-06-13";
|
2008-05-22 00:18:45 +00:00
|
|
|
|
2021-09-04 14:56:22 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "code.videolan.org";
|
|
|
|
owner = "videolan";
|
|
|
|
repo = pname;
|
|
|
|
rev = "5db6aa6cab1b146e07b60cc1736a01f21da01154";
|
|
|
|
sha256 = "0swyrkz6nvajivxvrr08py0jrfcsjvpxw78xm1k5gd9xbdrxvknh";
|
2008-05-22 00:18:45 +00: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.
|
2022-09-17 08:13:55 +00:00
|
|
|
patches = [
|
|
|
|
./disable-arm-neon-default.patch
|
|
|
|
(fetchpatch {
|
|
|
|
# https://code.videolan.org/videolan/x264/-/merge_requests/114
|
|
|
|
name = "fix-parallelism.patch";
|
|
|
|
url = "https://code.videolan.org/videolan/x264/-/commit/e067ab0b530395f90b578f6d05ab0a225e2efdf9.patch";
|
|
|
|
hash = "sha256-16h2IUCRjYlKI2RXYq8QyXukAdfoQxyBKsK/nI6vhRI=";
|
|
|
|
})
|
|
|
|
];
|
2020-01-04 01:06:13 +00:00
|
|
|
|
2019-05-18 17:01:43 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
2010-04-30 08:33:47 +00:00
|
|
|
'';
|
2008-10-14 13:35:25 +00:00
|
|
|
|
2019-05-18 17:01:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
2015-10-11 14:25:44 +00:00
|
|
|
|
2020-01-04 01:06:13 +00:00
|
|
|
preConfigure = lib.optionalString (stdenv.buildPlatform.isx86_64 || stdenv.hostPlatform.isi686) ''
|
2019-05-18 17:01:43 +00:00
|
|
|
# `AS' is set to the binutils assembler, but we need nasm
|
2017-07-21 12:40:23 +00:00
|
|
|
unset AS
|
2022-07-30 16:18:27 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isAarch ''
|
2020-01-30 11:52:21 +00:00
|
|
|
export AS=$CC
|
2017-07-21 12:40:23 +00:00
|
|
|
'';
|
|
|
|
|
2021-04-08 09:09:32 +00: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 21:58:47 +00:00
|
|
|
|
2021-11-21 01:50:41 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isx86 nasm;
|
2008-05-22 00:18:45 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Library for encoding H264/AVC video streams";
|
2020-04-01 01:11:51 +00: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 17:01:43 +00:00
|
|
|
maintainers = with maintainers; [ spwhitt tadeokondrak ];
|
2008-05-22 00:18:45 +00:00
|
|
|
};
|
|
|
|
}
|