Commit 1e9ffe17 authored by Mario Rodas's avatar Mario Rodas
Browse files
parent 09c33746
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.27";
  version = "0.2.28";

  src = fetchFromGitHub {
    owner = "lighttiger2505";
    repo = pname;
    owner = "sqls-server";
    repo = "sqls";
    rev = "v${version}";
    sha256 = "sha256-zgaxk4QpaJuKIipGQlxsw80MUfX+UoaUwTkxeHtmrH8=";
    hash = "sha256-b3zLyj2n+eKOPBRooS68GfM0bsiTVXDblYKyBYKiYug=";
  };

  vendorHash = "sha256-BJFSODM2E+z/PDLSqJPhR8FZJisRJUKeaVh6Sn4phtE=";
  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 ];