ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / go / golines / package.nix
blobda6c887d43bb25dc0e2956c41b5e6898f073e615
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 = "Golang formatter that fixes long lines";
18     homepage = "https://github.com/segmentio/golines";
19     license = licenses.mit;
20     maintainers = with maintainers; [ meain ];
21   };