tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
handbrake: fixup build by ffmpeg upstream patch
Vladimír Čunát
2 years ago
e98b61d9
c3a00e5a
+6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
handbrake
default.nix
+6
pkgs/applications/video/handbrake/default.nix
···
10
10
{ stdenv
11
11
, lib
12
12
, fetchFromGitHub
13
13
+
, fetchpatch
13
14
# For tests
14
15
, testers
15
16
, runCommand
···
135
136
"${src}/contrib/ffmpeg/A28-avcodec-amfenc-HDR-metadata.patch"
136
137
# This patch is not applying since ffmpeg 5.1.1, probably it was backported by upstream
137
138
# "${src}/contrib/ffmpeg/A30-svt-av1-backports.patch"
139
139
+
(fetchpatch {
140
140
+
name = "vulkan-remove-extensions.patch";
141
141
+
url = "https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/eb0455d64690";
142
142
+
hash = "sha256-qvLrb7b+9/bel8A2lZuSmBiJtHXsABw0Lvgn1ggnmCU=";
143
143
+
})
138
144
];
139
145
});
140
146