Merge #136081: orc: disable test failing on armv7l

This commit is contained in:
Vladimír Čunát 2021-09-01 07:04:15 +02:00
commit 4f1b64d802
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -12,6 +12,11 @@ in stdenv.mkDerivation rec {
sha256 = "1w0qmyj3v9sb2g7ff39pp38b9850y9hyy0bag26ifrby5f7ksvm6";
};
postPatch = lib.optionalString stdenv.isAarch32 ''
# https://gitlab.freedesktop.org/gstreamer/orc/-/issues/20
sed -i '/exec_opcodes_sys/d' testsuite/meson.build
'';
outputs = [ "out" "dev" ]
++ optional buildDevDoc "devdoc"
;