sqls: 0.2.27 -> 0.2.28

Diff: https://github.com/sqls-server/sqls/compare/v0.2.27...v0.2.28
This commit is contained in:
Mario Rodas 2023-12-30 11:19:00 +00:00
parent 09c3374691
commit 1e9ffe1725

View file

@ -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 ];