nixpkgs/pkgs/by-name/la/lazysql/package.nix
kilianar f919d20f12
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.
2024-11-05 12:28:16 +01:00

43 lines
1011 B
Nix

{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, testers
, lazysql
, xorg ? null
, darwin ? null
}:
buildGoModule rec {
pname = "lazysql";
version = "0.3.0";
src = fetchFromGitHub {
owner = "jorgerojas26";
repo = "lazysql";
rev = "v${version}";
hash = "sha256-nDiy7LSSUp1cPgtCfLdu7LEh0A+Ga1p5eNVanbQtQ+E=";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ kanielrkirby ];
mainProgram = "lazysql";
};
}