mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
66 lines
1.8 KiB
Nix
66 lines
1.8 KiB
Nix
{ 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.40";
|
|
|
|
src = fetchurl {
|
|
url = "https://gstreamer.freedesktop.org/src/orc/${pname}-${version}.tar.xz";
|
|
hash = "sha256-P8K+5437fEH9lgUGH8aRONt98Afq4vZpofVui6zvdKs=";
|
|
};
|
|
|
|
postPatch = lib.optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) ''
|
|
# This benchmark times out on Hydra.nixos.org
|
|
sed -i '/memcpy_speed/d' testsuite/meson.build
|
|
'';
|
|
|
|
outputs = [ "out" "dev" ]
|
|
++ optional buildDevDoc "devdoc"
|
|
;
|
|
outputBin = "dev"; # compilation tools
|
|
|
|
mesonFlags =
|
|
optionals (!buildDevDoc) [ "-Dgtk_doc=disabled" ]
|
|
;
|
|
|
|
nativeBuildInputs = [ meson ninja ]
|
|
++ optionals buildDevDoc [ gtk-doc file docbook_xsl ]
|
|
;
|
|
|
|
# https://gitlab.freedesktop.org/gstreamer/orc/-/issues/41
|
|
doCheck = !(stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64 && stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12");
|
|
|
|
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 = "Oil Runtime Compiler";
|
|
homepage = "https://gstreamer.freedesktop.org/projects/orc.html";
|
|
changelog = "https://cgit.freedesktop.org/gstreamer/orc/plain/RELEASE?h=${version}";
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
|
license = with licenses; [ bsd3 bsd2 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|