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

30 lines
911 B
Nix
Raw Normal View History

2019-06-21 20:01:33 +02:00
{ callPackage, CoreServices }:
2013-12-23 16:36:37 +01:00
rec {
2019-06-21 20:01:33 +02:00
gstreamer = callPackage ./core { inherit CoreServices; };
2013-12-23 16:36:37 +01:00
2016-03-18 13:11:51 +01:00
gstreamermm = callPackage ./gstreamermm { };
2013-12-23 16:36:37 +01:00
gst-plugins-base = callPackage ./base { inherit gstreamer; };
gst-plugins-good = callPackage ./good { inherit gst-plugins-base; };
gst-plugins-bad = callPackage ./bad { inherit gst-plugins-base; };
gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base; };
gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base gst-plugins-bad; };
2018-03-25 19:36:10 +02:00
2013-12-23 16:36:37 +01:00
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
gst-editing-services = callPackage ./ges { inherit gst-plugins-base; };
2015-05-24 12:53:14 +02:00
gst-vaapi = callPackage ./vaapi {
inherit gst-plugins-base gstreamer gst-plugins-bad;
};
gst-validate = callPackage ./validate { inherit gst-plugins-base; };
# note: gst-python is in ./python/default.nix - called under pythonPackages
2013-12-23 16:36:37 +01:00
}