gstreamer-0.10: move to gstreamer/legacy

This commit is contained in:
Song Wenwu
2013-12-23 23:21:43 +08:00
parent e49656fcf7
commit 97d7c0abe5
13 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,30 @@
{ fetchurl, stdenv, pkgconfig, python, gstreamer
, gst_plugins_base, pygtk
}:
stdenv.mkDerivation rec {
name = "gst-python-0.10.22";
src = fetchurl {
urls = [
"${meta.homepage}/src/gst-python/${name}.tar.bz2"
"mirror://gentoo/distfiles/${name}.tar.bz2"
];
sha256 = "0y1i4n5m1diljqr9dsq12anwazrhbs70jziich47gkdwllcza9lg";
};
buildInputs =
[ pkgconfig gst_plugins_base pygtk ]
;
propagatedBuildInputs = [ gstreamer python ];
meta = {
homepage = http://gstreamer.freedesktop.org;
description = "Python bindings for GStreamer";
license = "LGPLv2+";
};
}