My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/text/align/default.nix

22 lines
540 B

{ 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;
};
}