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

30 lines
911 B
Nix
Raw Normal View History

2019-06-21 21:01:33 +03:00
{ callPackage, CoreServices }:
2013-12-23 19:36:37 +04:00
rec {
2019-06-21 21:01:33 +03:00
gstreamer = callPackage ./core { inherit CoreServices; };
2013-12-23 19:36:37 +04:00
2016-03-18 15:11:51 +03:00
gstreamermm = callPackage ./gstreamermm { };
2013-12-23 19:36:37 +04: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 20:36:10 +03:00
2013-12-23 19:36:37 +04:00
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
gst-editing-services = callPackage ./ges { inherit gst-plugins-base; };
2015-05-24 13:53:14 +03: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 19:36:37 +04:00
}