1 { callPackage, AudioToolbox, AVFoundation, Cocoa, CoreFoundation, CoreMedia, CoreServices, CoreVideo, DiskArbitration, Foundation, IOKit, MediaToolbox, OpenGL, VideoToolbox }:
4 gstreamer = callPackage ./core { inherit CoreServices; };
6 gstreamermm = callPackage ./gstreamermm { };
8 gst-plugins-base = callPackage ./base { inherit gstreamer Cocoa OpenGL; };
10 gst-plugins-good = callPackage ./good { inherit gst-plugins-base Cocoa; };
12 gst-plugins-bad = callPackage ./bad { inherit gst-plugins-base AudioToolbox AVFoundation CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
14 gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base CoreFoundation DiskArbitration IOKit; };
16 gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base gst-plugins-bad; };
18 gst-libav = callPackage ./libav { inherit gst-plugins-base; };
20 gst-devtools = callPackage ./devtools { inherit gstreamer gst-plugins-base; };
22 gst-editing-services = callPackage ./ges { inherit gst-plugins-base gst-plugins-bad gst-devtools; };
24 gst-vaapi = callPackage ./vaapi {
25 inherit gst-plugins-base gstreamer gst-plugins-bad;
28 # note: gst-python is in ./python/default.nix - called under pythonPackages