depot/third_party/nixpkgs/pkgs/tools/misc/tbls/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

57 lines
1.4 KiB
Nix

{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, installShellFiles
, testers
, tbls
}:
buildGoModule rec {
pname = "tbls";
version = "1.74.3";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "tbls";
rev = "v${version}";
hash = "sha256-tS/sdX74Fr6arZh7/JiNFz1grjPMVZfg8C1VvqxsbYM=";
};
vendorHash = "sha256-NafHcWP9xJX2hy8i1TKtBi54cXDKgoxbgwLQjYRBcjU=";
nativeBuildInputs = [ installShellFiles ];
ldflags = [ "-s" "-w" ];
CGO_CFLAGS = [ "-Wno-format-security" ];
preCheck = ''
# Remove tests that require additional services.
rm -f \
datasource/*_test.go \
drivers/*/*_test.go
'';
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd tbls \
--bash <($out/bin/tbls completion bash) \
--fish <($out/bin/tbls completion fish) \
--zsh <($out/bin/tbls completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = tbls;
command = "tbls version";
inherit version;
};
meta = with lib; {
description = "A tool to generate documentation based on a database structure";
homepage = "https://github.com/k1LoW/tbls";
changelog = "https://github.com/k1LoW/tbls/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ azahi ];
mainProgram = "tbls";
};
}