nixpkgs/pkgs/development/libraries/gstreamer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1004 B
Nix
Raw Normal View History

{ callPackage, AudioToolbox, AVFoundation, Cocoa, CoreFoundation, CoreMedia, CoreServices, CoreVideo, DiskArbitration, Foundation, IOKit, MediaToolbox, OpenGL, VideoToolbox }:
2013-12-23 15:36:37 +00:00
{
2019-06-21 18:01:33 +00:00
gstreamer = callPackage ./core { inherit CoreServices; };
2013-12-23 15:36:37 +00:00
2016-03-18 12:11:51 +00:00
gstreamermm = callPackage ./gstreamermm { };
gst-plugins-base = callPackage ./base { inherit Cocoa OpenGL; };
2013-12-23 15:36:37 +00:00
gst-plugins-good = callPackage ./good { inherit Cocoa; };
2013-12-23 15:36:37 +00:00
gst-plugins-bad = callPackage ./bad { inherit AudioToolbox AVFoundation CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
2013-12-23 15:36:37 +00:00
gst-plugins-ugly = callPackage ./ugly { inherit CoreFoundation DiskArbitration IOKit; };
2013-12-23 15:36:37 +00:00
gst-plugins-viperfx = callPackage ./viperfx { };
gst-rtsp-server = callPackage ./rtsp-server { };
2018-03-25 17:36:10 +00:00
gst-libav = callPackage ./libav { };
gst-devtools = callPackage ./devtools { };
gst-editing-services = callPackage ./ges { };
2015-05-24 10:53:14 +00:00
gst-vaapi = callPackage ./vaapi { };
# note: gst-python is in ./python/default.nix - called under pythonPackages
2013-12-23 15:36:37 +00:00
}