2022-10-30 15:09:59 +00:00
|
|
|
{ stdenv, lib, fetchFromGitLab, fetchpatch, nasm
|
2021-04-08 16:26:57 +00:00
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "x264";
|
2021-09-26 12:46:18 +00:00
|
|
|
version = "unstable-2021-06-13";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-09-26 12:46:18 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "code.videolan.org";
|
|
|
|
owner = "videolan";
|
|
|
|
repo = pname;
|
|
|
|
rev = "5db6aa6cab1b146e07b60cc1736a01f21da01154";
|
|
|
|
sha256 = "0swyrkz6nvajivxvrr08py0jrfcsjvpxw78xm1k5gd9xbdrxvknh";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Upstream ./configure greps for (-mcpu|-march|-mfpu) in CFLAGS, which in nix
|
|
|
|
# is put in the cc wrapper anyway.
|
2022-10-30 15:09:59 +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-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
|
|
|
|
preConfigure = lib.optionalString (stdenv.buildPlatform.isx86_64 || stdenv.hostPlatform.isi686) ''
|
|
|
|
# `AS' is set to the binutils assembler, but we need nasm
|
|
|
|
unset AS
|
2022-08-12 12:06:08 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isAarch ''
|
2020-04-24 23:36:52 +00:00
|
|
|
export AS=$CC
|
|
|
|
'';
|
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
configureFlags = lib.optional enableShared "--enable-shared"
|
2021-02-05 17:12:51 +00:00
|
|
|
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
|
|
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isx86 nasm;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Library for encoding H264/AVC video streams";
|
|
|
|
homepage = "http://www.videolan.org/developers/x264.html";
|
2022-02-10 20:34:41 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ spwhitt tadeokondrak ];
|
|
|
|
};
|
|
|
|
}
|