Unverified Commit f919d20f authored by kilianar's avatar kilianar Committed by GitHub
Browse files

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.
parent 380c97ad
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -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";