svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10823
This commit is contained in:
Michael Raskin
2008-02-22 03:06:12 +00:00
parent b7e2573912
commit 8ea6496a10
18 changed files with 287 additions and 63 deletions

View 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;
}