Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "align"; 5 version = "1.1.3"; 6 7 src = fetchFromGitHub { 8 owner = "Guitarbum722"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "17gs3417633z71kc6l5zqg4b3rjhpn2v8qs8rnfrk4nbwzz4nrq3"; 12 }; 13 14 vendorSha256 = null; 15 16 meta = with lib; { 17 homepage = "https://github.com/Guitarbum722/align"; 18 description = "A general purpose application and library for aligning text"; 19 maintainers = with maintainers; [ hrhino ]; 20 license = licenses.mit; 21 }; 22}