-
svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10823
This commit is contained in:
13
pkgs/development/libraries/gstreamer/default.nix
Normal file
13
pkgs/development/libraries/gstreamer/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
args: with args;
|
||||
rec {
|
||||
gstreamerFun = lib.sumArgs (selectVersion ./gstreamer "0.10.17") args;
|
||||
gstreamer = gstreamerFun null;
|
||||
|
||||
gstPluginsBaseFun = lib.sumArgs (selectVersion ./gst-plugins-base "0.10.17")
|
||||
args { inherit gstreamer; };
|
||||
gstPluginsBase = gstPluginsBaseFun null;
|
||||
|
||||
gstPluginsGoodFun = lib.sumArgs (selectVersion ./gst-plugins-good "0.10.6")
|
||||
args { inherit gstPluginsBase; };
|
||||
gstPluginsGood = gstPluginsGoodFun null;
|
||||
}
|
||||
Reference in New Issue
Block a user