Skip to content

Commit

Permalink
mkdocs: update meta-information (#68113)
Browse files Browse the repository at this point in the history
* mkdocs: update meta-information
+ add rkoe as maintainer
  • Loading branch information
rkoe authored and c0bw3b committed Nov 23, 2019
1 parent 937ec23 commit d95112a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pkgs/development/tools/documentation/mkdocs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, python, fetchFromGitHub }:
{ stdenv, lib, python, fetchFromGitHub }:

with python.pkgs;

Expand Down Expand Up @@ -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 ];
};
}

0 comments on commit d95112a

Please sign in to comment.