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; };
|
|
|
|
|
2019-01-21 02:48:04 +01:00
|
|
|
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; };
|
2014-02-02 16:07:03 +01:00
|
|
|
|
2018-04-01 00:17:58 +02:00
|
|
|
gst-editing-services = callPackage ./ges { inherit gst-plugins-base; };
|
2015-05-24 12:53:14 +02:00
|
|
|
|
2015-10-28 14:15:44 +01:00
|
|
|
gst-vaapi = callPackage ./vaapi {
|
|
|
|
inherit gst-plugins-base gstreamer gst-plugins-bad;
|
|
|
|
};
|
2015-12-05 11:58:06 +01:00
|
|
|
|
|
|
|
gst-validate = callPackage ./validate { inherit gst-plugins-base; };
|
2017-02-09 09:40:36 +01:00
|
|
|
|
|
|
|
# note: gst-python is in ./python/default.nix - called under pythonPackages
|
2013-12-23 16:36:37 +01:00
|
|
|
}
|