2023-01-01 15:01:53 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, file
|
|
|
|
, docbook_xsl
|
|
|
|
, gtk-doc ? null
|
2020-10-20 12:51:51 +02:00
|
|
|
, buildDevDoc ? gtk-doc != null
|
2023-01-01 15:01:53 +01:00
|
|
|
|
|
|
|
# for passthru.tests
|
|
|
|
, gnuradio
|
|
|
|
, gst_all_1
|
|
|
|
, qt6
|
|
|
|
, vips
|
|
|
|
|
2020-10-20 12:51:51 +02:00
|
|
|
}: let
|
2021-01-22 12:25:31 +01:00
|
|
|
inherit (lib) optional optionals;
|
2020-10-20 12:51:51 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
pname = "orc";
|
2022-12-31 13:14:27 +01:00
|
|
|
version = "0.4.33";
|
2013-08-11 05:00:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-20 12:51:51 +02:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${pname}-${version}.tar.xz";
|
2022-12-31 13:14:27 +01:00
|
|
|
sha256 = "sha256-hE5tfbgIb3k/V2GNPUto0p2ZsWA05xQw3zwhz9PDVCo=";
|
2013-08-11 05:00:45 +02:00
|
|
|
};
|
|
|
|
|
2021-08-29 07:37:12 +02:00
|
|
|
postPatch = lib.optionalString stdenv.isAarch32 ''
|
|
|
|
# https://gitlab.freedesktop.org/gstreamer/orc/-/issues/20
|
|
|
|
sed -i '/exec_opcodes_sys/d' testsuite/meson.build
|
2022-01-22 08:25:16 +01:00
|
|
|
'' + lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''
|
|
|
|
# This benchmark times out on Hydra.nixos.org
|
|
|
|
sed -i '/memcpy_speed/d' testsuite/meson.build
|
2021-08-29 07:37:12 +02:00
|
|
|
'';
|
|
|
|
|
2020-10-20 12:51:51 +02:00
|
|
|
outputs = [ "out" "dev" ]
|
|
|
|
++ optional buildDevDoc "devdoc"
|
|
|
|
;
|
2015-10-03 16:48:44 +02:00
|
|
|
outputBin = "dev"; # compilation tools
|
2015-07-26 13:43:49 +02:00
|
|
|
|
2020-10-20 12:51:51 +02:00
|
|
|
mesonFlags =
|
2022-10-06 18:38:53 +02:00
|
|
|
optionals (!buildDevDoc) [ "-Dgtk_doc=disabled" ]
|
2020-10-20 12:51:51 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja ]
|
|
|
|
++ optionals buildDevDoc [ gtk-doc file docbook_xsl ]
|
|
|
|
;
|
2015-10-06 13:10:31 +02:00
|
|
|
|
2020-10-20 12:51:51 +02:00
|
|
|
doCheck = true;
|
2014-04-19 12:14:20 +02:00
|
|
|
|
2023-01-01 15:01:53 +01:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (gst_all_1) gst-plugins-good gst-plugins-bad gst-plugins-ugly;
|
|
|
|
inherit gnuradio vips;
|
|
|
|
qt6-qtmultimedia = qt6.qtmultimedia;
|
|
|
|
};
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
meta = with lib; {
|
2013-08-11 05:00:45 +02:00
|
|
|
description = "The Oil Runtime Compiler";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gstreamer.freedesktop.org/projects/orc.html";
|
2013-08-11 14:50:55 +02:00
|
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
2018-09-02 01:07:45 +02:00
|
|
|
license = with licenses; [ bsd3 bsd2 ];
|
2015-10-03 16:48:44 +02:00
|
|
|
platforms = platforms.unix;
|
2019-12-05 08:29:48 +01:00
|
|
|
maintainers = [ ];
|
2013-08-11 05:00:45 +02:00
|
|
|
};
|
|
|
|
}
|