Unverified Commit 39b5332b authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #137893 from hrhino/align

align: init at 1.1.3
parents 0686c403 7b6eb919
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -167,6 +167,8 @@ with pkgs;
  alda = callPackage ../development/interpreters/alda { };
  align = callPackage ../tools/text/align { };
  althttpd = callPackage ../servers/althttpd { };
  among-sus = callPackage ../games/among-sus { };