Merge pull request #208489 from r-ryantm/auto-update/orc

orc: 0.4.32 -> 0.4.33
This commit is contained in:
Robert Scott 2023-01-02 16:04:47 +00:00 committed by GitHub
commit c50e348679
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,28 @@
{ lib, stdenv, fetchurl, meson, ninja
, gtk-doc ? null, file, docbook_xsl
{ lib
, stdenv
, fetchurl
, meson
, ninja
, file
, docbook_xsl
, gtk-doc ? null
, buildDevDoc ? gtk-doc != null
# for passthru.tests
, gnuradio
, gst_all_1
, qt6
, vips
}: let
inherit (lib) optional optionals;
in stdenv.mkDerivation rec {
pname = "orc";
version = "0.4.32";
version = "0.4.33";
src = fetchurl {
url = "https://gstreamer.freedesktop.org/src/orc/${pname}-${version}.tar.xz";
sha256 = "1w0qmyj3v9sb2g7ff39pp38b9850y9hyy0bag26ifrby5f7ksvm6";
sha256 = "sha256-hE5tfbgIb3k/V2GNPUto0p2ZsWA05xQw3zwhz9PDVCo=";
};
postPatch = lib.optionalString stdenv.isAarch32 ''
@ -35,6 +48,12 @@ in stdenv.mkDerivation rec {
doCheck = true;
passthru.tests = {
inherit (gst_all_1) gst-plugins-good gst-plugins-bad gst-plugins-ugly;
inherit gnuradio vips;
qt6-qtmultimedia = qt6.qtmultimedia;
};
meta = with lib; {
description = "The Oil Runtime Compiler";
homepage = "https://gstreamer.freedesktop.org/projects/orc.html";