Move gstreamer packages to top-level

This will make callPackage work with gst.
* Rename gstCamelCase to gst_with_underscores.
* Add compatibility attributes.

svn path=/nixpkgs/trunk/; revision=33078
This commit is contained in:
Yury G. Kudryashov
2012-03-14 19:35:35 +00:00
parent 7a31872261
commit 4d9fb0a594
9 changed files with 40 additions and 42 deletions

View File

@@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, python, gstreamer
, gstPluginsBase, pygtk
, gst_plugins_base, pygtk
}:
stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
};
buildInputs =
[ pkgconfig gstPluginsBase pygtk ]
[ pkgconfig gst_plugins_base pygtk ]
;
propagatedBuildInputs = [ gstreamer python ];