summaryrefslogtreecommitdiff
path: root/pkgs/tcl-cmark
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tcl-cmark')
-rw-r--r--pkgs/tcl-cmark/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/tcl-cmark/default.nix b/pkgs/tcl-cmark/default.nix
index ccbf0ff..4f8a5ce 100644
--- a/pkgs/tcl-cmark/default.nix
+++ b/pkgs/tcl-cmark/default.nix
@@ -3,6 +3,7 @@
, autoreconfHook
, cmark-gfm
, fetchFromGitHub
+, lib
}:
tcl.mkTclDerivation {
@@ -22,4 +23,10 @@ tcl.mkTclDerivation {
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ cmark-gfm ];
+
+ meta = with lib; {
+ description = "Tcl bindings to the cmark-gfm Github Flavoured CommonMark/Markdown library";
+ homepage = "https://github.com/apnadkarni/tcl-cmark/";
+ license = licenses.bsd3;
+ };
}