about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/align/default.nix
blob: 4f67d747da4c125be0cc1c5abb20e8b4fc51ec35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}