diff options
author | Linnnus <[email protected]> | 2023-10-01 22:43:58 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-01 23:08:32 +0200 |
commit | 7e27f6f2250bd4e0faa5d5e626dce541a8bb22e4 (patch) | |
tree | 11eb68ec0ae6e1f9cd1f4d7b645cc55e582b1873 /pkgs/tcl-cmark/default.nix | |
parent | 241bbaf27ad990d0630b7b48f3e9858e8f42b88f (diff) |
Use alejandra formatter
Diffstat (limited to 'pkgs/tcl-cmark/default.nix')
-rw-r--r-- | pkgs/tcl-cmark/default.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/tcl-cmark/default.nix b/pkgs/tcl-cmark/default.nix index 4f8a5ce..4495610 100644 --- a/pkgs/tcl-cmark/default.nix +++ b/pkgs/tcl-cmark/default.nix @@ -1,11 +1,11 @@ -{ tcl -, pkg-config -, autoreconfHook -, cmark-gfm -, fetchFromGitHub -, lib +{ + tcl, + pkg-config, + autoreconfHook, + cmark-gfm, + fetchFromGitHub, + lib, }: - tcl.mkTclDerivation { pname = "tcl-cmark"; version = "2022-03-15"; @@ -21,8 +21,8 @@ tcl.mkTclDerivation { ./fix-gfm-extension-name.patch ]; - nativeBuildInputs = [ pkg-config autoreconfHook ]; - buildInputs = [ cmark-gfm ]; + nativeBuildInputs = [pkg-config autoreconfHook]; + buildInputs = [cmark-gfm]; meta = with lib; { description = "Tcl bindings to the cmark-gfm Github Flavoured CommonMark/Markdown library"; |