summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2014-03-17 21:43:10 +0800
committer宋文武 <iyzsong@gmail.com>2014-03-17 21:43:10 +0800
commitb45a29403850e056379ce2a1f09af3884d9a3797 (patch)
treeb85bf52ed2ad2e6287fe8b1a232f4290ac8346e8 /pkgs/development/libraries/gstreamer
parente67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff (diff)
downloadnixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar.gz
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar.bz2
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar.lz
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar.xz
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.tar.zst
nixlib-b45a29403850e056379ce2a1f09af3884d9a3797.zip
gst-plugins-good: add description and set license correctly
Diffstat (limited to 'pkgs/development/libraries/gstreamer')
-rw-r--r--pkgs/development/libraries/gstreamer/good/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix
index 71151c4e559c..090c84600ab7 100644
--- a/pkgs/development/libraries/gstreamer/good/default.nix
+++ b/pkgs/development/libraries/gstreamer/good/default.nix
@@ -9,11 +9,17 @@
 stdenv.mkDerivation rec {
   name = "gst-plugins-good-1.2.3";
 
-  meta = {
-    homepage = "http://gstreamer.freedesktop.org";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = with stdenv.lib.maintainers; [ iyzsong ];
+  meta = with stdenv.lib; {
+    description = "Gstreamer Good Plugins";
+    homepage    = "http://gstreamer.freedesktop.org";
+    longDescription = ''
+      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 {