diff options
author | Linnnus <[email protected]> | 2023-10-01 20:14:05 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-01 20:14:05 +0200 |
commit | 877db4137c34216fc2623570bc155d73e4b27f0b (patch) | |
tree | 5a867eb260f2e604a8e7853166b1694d1ef4fad2 /pkgs/tcl-cmark | |
parent | bb5319539738e39fd4c5412ffff2acb97369e9c3 (diff) |
Add description to pgks
Diffstat (limited to 'pkgs/tcl-cmark')
-rw-r--r-- | pkgs/tcl-cmark/default.nix | 7 |
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; + }; } |