gst-plugins-good: add description and set license correctly

This commit is contained in:
宋文武 2014-03-17 21:43:10 +08:00
parent e67f3a38cf
commit b45a294038

View file

@ -9,11 +9,17 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gst-plugins-good-1.2.3"; name = "gst-plugins-good-1.2.3";
meta = { meta = with stdenv.lib; {
homepage = "http://gstreamer.freedesktop.org"; description = "Gstreamer Good Plugins";
license = stdenv.lib.licenses.gpl2Plus; homepage = "http://gstreamer.freedesktop.org";
platforms = stdenv.lib.platforms.linux; longDescription = ''
maintainers = with stdenv.lib.maintainers; [ iyzsong ]; a set of plug-ins that we consider to have good quality code,
correct functionality, our preferred license (LGPL for the plug-in
code, LGPL or LGPL-compatible for the supporting library).
'';
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ iyzsong ];
}; };
src = fetchurl { src = fetchurl {