gst-plugins-bad: add description and set license correctly
This commit is contained in:
parent
1b6c01721d
commit
e67f3a38cf
|
@ -9,11 +9,18 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gst-plugins-bad-1.2.3";
|
name = "gst-plugins-bad-1.2.3";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://gstreamer.freedesktop.org";
|
description = "Gstreamer Bad 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 aren't up to par compared to the
|
||||||
|
rest. They might be close to being good quality, but they're missing
|
||||||
|
something - be it a good code review, some documentation, a set of tests,
|
||||||
|
a real live maintainer, or some actual wide use.
|
||||||
|
'';
|
||||||
|
license = licenses.lgpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ iyzsong ];
|
||||||
};
|
};
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
|
Loading…
Reference in New Issue