Skip to content

Commit

Permalink
mkdocs: update meta-information, set myself as maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoe committed Sep 4, 2019
1 parent 2245bc0 commit 2be1def
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 2be1def

Please sign in to comment.