1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gst_all_1.gst-plugins-bad: fix build with neon 0.31

https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1165
This commit is contained in:
worldofpeace 2020-04-03 19:01:41 -04:00
parent 92124ed660
commit c6816b8f7c

View file

@ -1,5 +1,6 @@
{ stdenv
, fetchurl
, fetchpatch
, meson
, ninja
, gettext
@ -96,6 +97,12 @@ in stdenv.mkDerivation rec {
};
patches = [
# Fix build with neon 0.31
# https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1165
(fetchpatch {
url = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/commit/f10b424418e448211e3427a76fcd046e157ef0b7.patch";
sha256 = "0l1f6kqcl04q7w12a2b4qibcvjz6gqhs0csdv2wbvfd6zndpjm6p";
})
./fix_pkgconfig_includedir.patch
];