biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / golines / default.nix
blob68ee00ecb638a96c1534c3e3602adeb16fef4fc9
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "golines";
5   version = "0.12.2";
7   src = fetchFromGitHub {
8     owner = "segmentio";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-D0gI9BA0vgM1DBqwolNTfPsTCWuOGrcu5gAVFEdyVGg=";
12   };
14   vendorHash = "sha256-jI3/m1UdZMKrS3H9jPhcVAUCjc1G/ejzHi9SCTy24ak=";
16   meta = with lib; {
17     description = "A golang formatter that fixes long lines";
18     homepage = "https://github.com/segmentio/golines";
19     license = licenses.mit;
20     maintainers = with maintainers; [ meain ];
21   };