summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorRoland Freikamp <rk@simple-is-better.org>2019-11-23 23:23:47 +0100
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-23 23:23:47 +0100
commitd95112aa733e81533128e3f7b65b3a9dbe7a0642 (patch)
treed2632d78467c5ac540d9b847ffe753e8b4729d68 /pkgs/development/tools/documentation
parent937ec235b7aa22dbfc1c9271153b43448141570d (diff)
downloadnixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar.gz
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar.bz2
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar.lz
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar.xz
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.tar.zst
nixpkgs-d95112aa733e81533128e3f7b65b3a9dbe7a0642.zip
mkdocs: update meta-information (#68113)
* mkdocs: update meta-information
+ add rkoe as maintainer


Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/mkdocs/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/development/tools/documentation/mkdocs/default.nix b/pkgs/development/tools/documentation/mkdocs/default.nix
index 5f3dff95e35..e9e116280a0 100644
--- a/pkgs/development/tools/documentation/mkdocs/default.nix
+++ b/pkgs/development/tools/documentation/mkdocs/default.nix
@@ -1,4 +1,4 @@
-{ lib, python, fetchFromGitHub }:
+{ stdenv, lib, python, fetchFromGitHub }:
 
 with python.pkgs;
 
@@ -35,9 +35,18 @@ buildPythonApplication rec {
     backports_tempfile
   ];
 
-  meta = {
+  meta = with stdenv.lib; {
+    description = "Project documentation with Markdown / static website generator";
+    longDescription = ''
+      MkDocs is a fast, simple and downright gorgeous static site generator that's
+      geared towards building project documentation. Documentation source files
+      are written in Markdown, and configured with a single YAML configuration file.
+      
+      MkDocs can also be used to generate general-purpose Websites.
+    '';
     homepage = http://mkdocs.org/;
-    description = "Project documentation with Markdown";
     license = lib.licenses.bsd2;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.rkoe ];
   };
 }