tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ffmpeg: backport binutils-2.41 fix
Sergei Trofimovich
2 years ago
8f42ee75
7f90b56e
+8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
ffmpeg
generic.nix
+8
pkgs/development/libraries/ffmpeg/generic.nix
···
350
350
'';
351
351
352
352
patches = map (patch: fetchpatch patch) (extraPatches
353
353
+
++ (lib.optional (lib.versionOlder version "6.1")
354
354
+
{
355
355
+
# Backport fix for binutils-2.41.
356
356
+
name = "binutils-2.41.patch";
357
357
+
url = "https://git.ffmpeg.org/gitweb/ffmpeg.git/patch/effadce6c756247ea8bae32dc13bb3e6f464f0eb";
358
358
+
hash = "sha256-vlBUMJ1bORQHRNpuzc5iXsTWwS/CN5BmGIA8g7H7mJE=";
359
359
+
}
360
360
+
)
353
361
++ (lib.optional (lib.versionAtLeast finalAttrs.version "6" && lib.versionOlder finalAttrs.version "6.1")
354
362
{ # this can be removed post 6.1
355
363
name = "fix_aacps_tablegen";