about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorHarrison Houghton <hora.rhino@gmail.com>2021-09-14 16:52:34 -0400
committerHarrison Houghton <hora.rhino@gmail.com>2021-09-24 08:10:21 -0400
commit7b6eb919617de0b184618df9cbf2d108b01abd06 (patch)
treeb8c5a5dec767395e2ee5e2420f56b879dfe43dff /pkgs/tools
parentf6a7137726708b74fb14a52b220ea1b1ef6a4b6c (diff)
align: init at 1.1.3
This is a nice package for viewing CSV files and such, where differing
field widths can make it hard to understand the data.

Co-authored-by: figsoda <figsoda@pm.me>
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/align/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/text/align/default.nix b/pkgs/tools/text/align/default.nix
new file mode 100644
index 0000000000000..4f67d747da4c1
--- /dev/null
+++ b/pkgs/tools/text/align/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "align";
+  version = "1.1.3";
+
+  src = fetchFromGitHub {
+    owner = "Guitarbum722";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "17gs3417633z71kc6l5zqg4b3rjhpn2v8qs8rnfrk4nbwzz4nrq3";
+  };
+
+  vendorSha256 = null;
+
+  meta = with lib; {
+    homepage = "https://github.com/Guitarbum722/align";
+    description = "A general purpose application and library for aligning text";
+    maintainers = with maintainers; [ hrhino ];
+    license = licenses.mit;
+  };
+}