lazysql: fix incorrect version output (#353654)

* lazysql: fix version display in `lazysql version` command

Sets `main.version` using `ldflags` to ensure `lazysql version` shows the
correct version instead of "dev".

* lazysql: add passthru.tests.version

To address previous issues where lazygit incorrectly reported its version as
"dev," this commit introduces `passthru.tests.version` for lazysql. This test
verifies that the version command for lazysql (`lazysql version`) correctly
reports the expected version.
This commit is contained in:
kilianar 2024-11-05 12:28:16 +01:00 committed by GitHub
parent 380c97ad60
commit f919d20f12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,8 @@
, stdenv
, buildGoModule
, fetchFromGitHub
, testers
, lazysql
, xorg ? null
, darwin ? null
}:
@ -19,8 +21,17 @@ buildGoModule rec {
vendorHash = "sha256-SKNFViwoMzZ1hKKZSvTm0/kKro1IaUVsC+0Pbv7FoAU=";
ldflags = [
"-X main.version=${version}"
];
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ xorg.libX11 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
passthru.tests.version = testers.testVersion {
package = lazysql;
command = "lazysql version";
};
meta = with lib; {
description = "A cross-platform TUI database management tool written in Go";
homepage = "https://github.com/jorgerojas26/lazysql";