2021-03-04 12:01:51 -08:00
|
|
|
{ callPackage, AudioToolbox, AVFoundation, Cocoa, CoreFoundation, CoreMedia, CoreServices, CoreVideo, DiskArbitration, Foundation, IOKit, MediaToolbox, OpenGL, VideoToolbox }:
|
2013-12-23 07:36:37 -08:00
|
|
|
|
|
|
|
rec {
|
2019-06-21 11:01:33 -07:00
|
|
|
gstreamer = callPackage ./core { inherit CoreServices; };
|
2013-12-23 07:36:37 -08:00
|
|
|
|
2016-03-18 05:11:51 -07:00
|
|
|
gstreamermm = callPackage ./gstreamermm { };
|
|
|
|
|
2021-03-04 12:01:51 -08:00
|
|
|
gst-plugins-base = callPackage ./base { inherit gstreamer Cocoa OpenGL; };
|
2013-12-23 07:36:37 -08:00
|
|
|
|
2021-03-04 12:01:51 -08:00
|
|
|
gst-plugins-good = callPackage ./good { inherit gst-plugins-base Cocoa; };
|
2013-12-23 07:36:37 -08:00
|
|
|
|
2021-03-04 12:01:51 -08:00
|
|
|
gst-plugins-bad = callPackage ./bad { inherit gst-plugins-base AudioToolbox AVFoundation CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
|
2013-12-23 07:36:37 -08:00
|
|
|
|
2021-03-04 12:01:51 -08:00
|
|
|
gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base CoreFoundation DiskArbitration IOKit; };
|
2013-12-23 07:36:37 -08:00
|
|
|
|
2019-01-20 17:48:04 -08:00
|
|
|
gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base gst-plugins-bad; };
|
2018-03-25 10:36:10 -07:00
|
|
|
|
2013-12-23 07:36:37 -08:00
|
|
|
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
|
2014-02-02 07:07:03 -08:00
|
|
|
|
2020-10-01 15:31:58 -07:00
|
|
|
gst-devtools = callPackage ./devtools { inherit gstreamer gst-plugins-base; };
|
|
|
|
|
|
|
|
gst-editing-services = callPackage ./ges { inherit gst-plugins-base gst-plugins-bad gst-devtools; };
|
2015-05-24 03:53:14 -07:00
|
|
|
|
2015-10-28 06:15:44 -07:00
|
|
|
gst-vaapi = callPackage ./vaapi {
|
|
|
|
inherit gst-plugins-base gstreamer gst-plugins-bad;
|
|
|
|
};
|
2015-12-05 02:58:06 -08:00
|
|
|
|
2017-02-09 00:40:36 -08:00
|
|
|
# note: gst-python is in ./python/default.nix - called under pythonPackages
|
2013-12-23 07:36:37 -08:00
|
|
|
}
|