Unverified Commit fd7af636 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #277706 from r-ryantm/auto-update/sqls

sqls: 0.2.22 -> 0.2.27
parents b13feabb 1e9ffe17
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2,23 +2,23 @@

buildGoModule rec {
  pname = "sqls";
  version = "0.2.22";
  version = "0.2.28";

  src = fetchFromGitHub {
    owner = "lighttiger2505";
    repo = pname;
    owner = "sqls-server";
    repo = "sqls";
    rev = "v${version}";
    sha256 = "sha256-xtvm/NVL98dRzQL1id/WwT/NdsnB7qTRVR7jfrRsabY=";
    hash = "sha256-b3zLyj2n+eKOPBRooS68GfM0bsiTVXDblYKyBYKiYug=";
  };

  vendorHash = "sha256-sowzyhvNr7Ek3ex4BP415HhHSKnqPHy5EbnECDVZOGw=";
  vendorHash = "sha256-6IFJvdT7YLnWsg7Icd3nKXXHM6TZKZ+IG9nEBosRCwA=";

  ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.revision=${src.rev}" ];

  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/lighttiger2505/sqls";
    homepage = "https://github.com/sqls-server/sqls";
    description = "SQL language server written in Go";
    license = licenses.mit;
    maintainers = [ maintainers.marsam ];