2019-06-21 19:01:33 +01:00
|
|
|
{ callPackage, CoreServices }:
|
2013-12-23 15:36:37 +00:00
|
|
|
|
|
|
|
rec {
|
2019-06-21 19:01:33 +01: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 { };
|
|
|
|
|
2013-12-23 15:36:37 +00: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 01:48:04 +00:00
|
|
|
gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base gst-plugins-bad; };
|
2018-03-25 18:36:10 +01:00
|
|
|
|
2013-12-23 15:36:37 +00:00
|
|
|
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
|
2014-02-02 15:07:03 +00:00
|
|
|
|
2020-10-01 23:31:58 +01: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 11:53:14 +01:00
|
|
|
|
2015-10-28 13:15:44 +00:00
|
|
|
gst-vaapi = callPackage ./vaapi {
|
|
|
|
inherit gst-plugins-base gstreamer gst-plugins-bad;
|
|
|
|
};
|
2015-12-05 10:58:06 +00:00
|
|
|
|
2017-02-09 08:40:36 +00:00
|
|
|
# note: gst-python is in ./python/default.nix - called under pythonPackages
|
2013-12-23 15:36:37 +00:00
|
|
|
}
|