mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
18 lines
487 B
Nix
18 lines
487 B
Nix
{ callPackage }:
|
|
|
|
rec {
|
|
gstreamer = callPackage ./core { };
|
|
|
|
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-libav = callPackage ./libav { inherit gst-plugins-base; };
|
|
|
|
gst-python = callPackage ./python { inherit gst-plugins-base gstreamer; };
|
|
}
|