6835a72af6
ipu6-camera-hal: unstable-2023-03-09 -> unstable-2023-03-09 icamerasrc: unstable-2023-03-09 -> unstable-2023-10-23 Moved ipu6 platform "versioning" to ipu6-camera-hal to match upstream build process. Not ideal but too unclear ATM if ipu6-camera-bin firmware could be a multi-output derivation. Specifically which platform owns `ipu6epadln_fw.bin` is unknown. Added ipu6epmtl "Meteor Lake" platform entries. TODO: I think there is one more fix that upstream nixpkgs is missing in order for firmware to actualy load/work (check Dell laptop config for that fix).
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ callPackage
|
|
, AVFoundation
|
|
, AudioToolbox
|
|
, Cocoa
|
|
, CoreFoundation
|
|
, CoreMedia
|
|
, CoreServices
|
|
, CoreVideo
|
|
, DiskArbitration
|
|
, Foundation
|
|
, IOKit
|
|
, MediaToolbox
|
|
, OpenGL
|
|
, Security
|
|
, VideoToolbox
|
|
, ipu6ep-camera-hal
|
|
, ipu6epmtl-camera-hal
|
|
}:
|
|
|
|
{
|
|
gstreamer = callPackage ./core { inherit Cocoa CoreServices; };
|
|
|
|
gstreamermm = callPackage ./gstreamermm { };
|
|
|
|
gst-plugins-base = callPackage ./base { inherit Cocoa OpenGL; };
|
|
|
|
gst-plugins-good = callPackage ./good { inherit Cocoa; };
|
|
|
|
gst-plugins-bad = callPackage ./bad { inherit AudioToolbox AVFoundation Cocoa CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
|
|
|
|
gst-plugins-ugly = callPackage ./ugly { inherit CoreFoundation DiskArbitration IOKit; };
|
|
|
|
gst-plugins-viperfx = callPackage ./viperfx { };
|
|
|
|
gst-plugins-rs = callPackage ./rs { inherit Security; };
|
|
|
|
gst-rtsp-server = callPackage ./rtsp-server { };
|
|
|
|
gst-libav = callPackage ./libav { };
|
|
|
|
gst-devtools = callPackage ./devtools { };
|
|
|
|
gst-editing-services = callPackage ./ges { };
|
|
|
|
gst-vaapi = callPackage ./vaapi { };
|
|
|
|
icamerasrc-ipu6 = callPackage ./icamerasrc { };
|
|
icamerasrc-ipu6ep = callPackage ./icamerasrc {
|
|
ipu6-camera-hal = ipu6ep-camera-hal;
|
|
};
|
|
icamerasrc-ipu6epmtl = callPackage ./icamerasrc {
|
|
ipu6-camera-hal = ipu6epmtl-camera-hal;
|
|
};
|
|
|
|
# note: gst-python is in ../../python-modules/gst-python - called under python3Packages
|
|
}
|