summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorarcnmx <arcnmx@users.noreply.github.com>2021-07-23 17:13:20 -0700
committerarcnmx <arcnmx@users.noreply.github.com>2021-07-23 17:20:44 -0700
commitc3822ddb5819def049f956564a8f97e540bd11ef (patch)
treef620a7ac578c656c5958e1d6f724426eefe2c648 /pkgs/development/libraries
parentb09661d41fb93562fd53f31574dbf781b130ac44 (diff)
downloadnixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar.gz
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar.bz2
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar.lz
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar.xz
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.tar.zst
nixpkgs-c3822ddb5819def049f956564a8f97e540bd11ef.zip
gst_all_1: get all dependencies via callPackage
The use of `rec` would bypass callPackage's machinery for gstreamer
interdependencies and hinder overrides via overlays.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/gstreamer/default.nix22
1 files changed, 10 insertions, 12 deletions
diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix
index a86308ea3ce..d1c7233f0d4 100644
--- a/pkgs/development/libraries/gstreamer/default.nix
+++ b/pkgs/development/libraries/gstreamer/default.nix
@@ -1,29 +1,27 @@
 { callPackage, AudioToolbox, AVFoundation, Cocoa, CoreFoundation, CoreMedia, CoreServices, CoreVideo, DiskArbitration, Foundation, IOKit, MediaToolbox, OpenGL, VideoToolbox }:
 
-rec {
+{
   gstreamer = callPackage ./core { inherit CoreServices; };
 
   gstreamermm = callPackage ./gstreamermm { };
 
-  gst-plugins-base = callPackage ./base { inherit gstreamer Cocoa OpenGL; };
+  gst-plugins-base = callPackage ./base { inherit Cocoa OpenGL; };
 
-  gst-plugins-good = callPackage ./good { inherit gst-plugins-base Cocoa; };
+  gst-plugins-good = callPackage ./good { inherit Cocoa; };
 
-  gst-plugins-bad = callPackage ./bad { inherit gst-plugins-base AudioToolbox AVFoundation CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
+  gst-plugins-bad = callPackage ./bad { inherit AudioToolbox AVFoundation CoreMedia CoreVideo Foundation MediaToolbox VideoToolbox; };
 
-  gst-plugins-ugly = callPackage ./ugly { inherit gst-plugins-base CoreFoundation DiskArbitration IOKit; };
+  gst-plugins-ugly = callPackage ./ugly { inherit CoreFoundation DiskArbitration IOKit; };
 
-  gst-rtsp-server = callPackage ./rtsp-server { inherit gst-plugins-base gst-plugins-bad; };
+  gst-rtsp-server = callPackage ./rtsp-server { };
 
-  gst-libav = callPackage ./libav { inherit gst-plugins-base; };
+  gst-libav = callPackage ./libav { };
 
-  gst-devtools = callPackage ./devtools { inherit gstreamer gst-plugins-base; };
+  gst-devtools = callPackage ./devtools { };
 
-  gst-editing-services = callPackage ./ges { inherit gst-plugins-base gst-plugins-bad gst-devtools; };
+  gst-editing-services = callPackage ./ges { };
 
-  gst-vaapi = callPackage ./vaapi {
-    inherit gst-plugins-base gstreamer gst-plugins-bad;
-  };
+  gst-vaapi = callPackage ./vaapi { };
 
   # note: gst-python is in ./python/default.nix - called under pythonPackages
 }