about summary refs log tree commit diff
path: root/pkgs/tools/text/dt
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-10 13:46:00 -0400
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-10 19:26:42 +0000
commitc3107bf191f286685222b30872e8a65b852d93ed (patch)
treeac169b3cb3d53b76cb3e2a396e34ad911ea5714a /pkgs/tools/text/dt
parent1050eee2a2efdce788e43634567a105cb7d97d57 (diff)
dt: clean up descriptions
- remove trailing period in description, this seems to be accidently
  removed when rebasing
  https://nixos.org/manual/nixpkgs/unstable/#var-meta-description

- fix indentation in longDescription
Diffstat (limited to 'pkgs/tools/text/dt')
-rw-r--r--pkgs/tools/text/dt/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/tools/text/dt/default.nix b/pkgs/tools/text/dt/default.nix
index 8b892f6126ea7..dfe820a6f6cf9 100644
--- a/pkgs/tools/text/dt/default.nix
+++ b/pkgs/tools/text/dt/default.nix
@@ -22,19 +22,19 @@ stdenv.mkDerivation (finalAttrs: {
 
   meta = {
     homepage = "https://dt.plumbing";
-    description = "Duct tape for your unix pipes.";
+    description = "Duct tape for your unix pipes";
     longDescription = ''
-       dt is a utility and programming language. The utility is intended for
-       ergonomic in-the-shell execution. The language is straightforward (in
-       the most literal sense) with a minimal syntax that allows for
-       high-level, higher-order programming.
+      dt is a utility and programming language. The utility is intended for
+      ergonomic in-the-shell execution. The language is straightforward (in
+      the most literal sense) with a minimal syntax that allows for
+      high-level, higher-order programming.
 
-       It's meant to supplement (not replace!) other tools like awk, sed,
-       xargs, and shell built-ins. Something like the Perl one-liners popular
-       yesteryear, but hopefully easier to read and reason through.
+      It's meant to supplement (not replace!) other tools like awk, sed,
+      xargs, and shell built-ins. Something like the Perl one-liners popular
+      yesteryear, but hopefully easier to read and reason through.
 
-       In short, dt is intended to be generally useful, with zero pretense of
-       elegance.
+      In short, dt is intended to be generally useful, with zero pretense of
+      elegance.
     '';
     license = lib.licenses.bsd3;
     maintainers = with lib.maintainers; [ booniepepper ];