Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
907 B
Nix
44 lines
907 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
lazysql,
|
|
xorg ? null,
|
|
darwin ? null,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "lazysql";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jorgerojas26";
|
|
repo = "lazysql";
|
|
rev = "v${version}";
|
|
hash = "sha256-6tPSr28Ja7LuwWrcqSYLxxQj8e9XCgTWxzudjXOriBg=";
|
|
};
|
|
|
|
vendorHash = "sha256-NGwCTEh1/5dJWOCSe18FZYYu8v7Mj6MWVEWyNNA1T68=";
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ xorg.libX11 ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = lazysql;
|
|
command = "lazysql --version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform TUI database management tool written in Go";
|
|
homepage = "https://github.com/jorgerojas26/lazysql";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "lazysql";
|
|
};
|
|
}
|