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

30 lines
859 B
Nix
Raw Normal View History

{ callPackage }:
2013-12-23 15:36:37 +00:00
rec {
gstreamer = callPackage ./core { };
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; };
2018-03-25 17:36:10 +00:00
gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base; };
2013-12-23 15:36:37 +00:00
gst-libav = callPackage ./libav { inherit gst-plugins-base; };
gst-editing-services = callPackage ./ges { inherit gst-plugins-base; };
2015-05-24 10:53:14 +00: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 15:36:37 +00:00
}