summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
author宋文武 <iyzsong@gmail.com>2014-03-17 21:31:45 +0800
committer宋文武 <iyzsong@gmail.com>2014-03-17 21:31:45 +0800
commite67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff (patch)
tree445b91b6cbdb8b7247b04656f6b0c9612aaa23db /pkgs/development
parent1b6c01721d3853860903a605575b8eddd56c2db1 (diff)
downloadnixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar.gz
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar.bz2
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar.lz
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar.xz
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.tar.zst
nixlib-e67f3a38cfc21cd65ae6c4cc8b5fdfad54be12ff.zip
gst-plugins-bad: add description and set license correctly
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/gstreamer/bad/default.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix
index a9137ad46a77..7647c0f64dba 100644
--- a/pkgs/development/libraries/gstreamer/bad/default.nix
+++ b/pkgs/development/libraries/gstreamer/bad/default.nix
@@ -9,11 +9,18 @@
 stdenv.mkDerivation rec {
   name = "gst-plugins-bad-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 Bad Plugins";
+    homepage    = "http://gstreamer.freedesktop.org";
+    longDescription = ''
+      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 {