Commit ba375edb authored by Abin Simon's avatar Abin Simon
Browse files

golines: init at 0.11.0

parent 24b16032
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "golines";
  version = "0.11.0";

  src = fetchFromGitHub {
    owner = "segmentio";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-2K9KAg8iSubiTbujyFGN3yggrL+EDyeUCs9OOta/19A=";
  };

  vendorSha256 = "sha256-rxYuzn4ezAxaeDhxd8qdOzt+CKYIh03A9zKNdzILq18=";

  meta = with lib; {
    description = "A golang formatter that fixes long lines";
    homepage = "https://github.com/segmentio/golines";
    license = licenses.mit;
    maintainers = with maintainers; [ meain ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -26016,6 +26016,8 @@ with pkgs;
  go-task = callPackage ../development/tools/go-task { };
  golines = callPackage ../development/tools/golines { };
  golint = callPackage ../development/tools/golint { };
  golangci-lint = callPackage ../development/tools/golangci-lint { };