94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, lib
|
|
, sqlcmd
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "sqlcmd";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "go-sqlcmd";
|
|
owner = "microsoft";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-93igyFjIRkxDb4uRSbB6JAStZLRoqvL6Rn5GPPPWTUA=";
|
|
};
|
|
|
|
vendorHash = "sha256-m3+zCa4nwu3W8K9BoFyKHE/dM8bFyklJDFP7w1XBprc=";
|
|
proxyVendor = true;
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
|
|
|
|
subPackages = [ "cmd/modern" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
postInstall = ''
|
|
mv $out/bin/modern $out/bin/sqlcmd
|
|
|
|
installShellCompletion --cmd sqlcmd \
|
|
--bash <($out/bin/sqlcmd completion bash) \
|
|
--fish <($out/bin/sqlcmd completion fish) \
|
|
--zsh <($out/bin/sqlcmd completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = sqlcmd;
|
|
command = "sqlcmd --version";
|
|
inherit version;
|
|
};
|
|
|
|
meta = {
|
|
description = "A command line tool for working with Microsoft SQL Server, Azure SQL Database, and Azure Synapse";
|
|
homepage = "https://github.com/microsoft/go-sqlcmd";
|
|
changelog = "https://github.com/microsoft/go-sqlcmd/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ratsclub ];
|
|
};
|
|
}
|