sqlcmd: init at 0.15.3

This commit is contained in:
Victor Freire 2023-03-18 11:35:09 -03:00
parent 1dd6d307f7
commit aec2229553
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, sqlcmd
, testers
}:
buildGoModule rec {
pname = "sqlcmd";
version = "0.15.3";
src = fetchFromGitHub {
repo = "go-sqlcmd";
owner = "microsoft";
rev = "v${version}";
sha256 = "sha256-1CdZVh7pbupCNOE1ydgYEqX4rYo2LRddlNRNf0QjlN0=";
};
vendorSha256 = "sha256-6JfxKzYAjSQ9JFuFGDUZ0ALS1D7f2LK3bP0Fbl2ivo0=";
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 ];
};
}

View File

@ -18880,6 +18880,8 @@ with pkgs;
sqlcheck = callPackage ../development/tools/database/sqlcheck { };
sqlcmd = callPackage ../development/tools/database/sqlcmd { };
sqlitebrowser = libsForQt5.callPackage ../development/tools/database/sqlitebrowser { };
sqlite-utils = with python3Packages; toPythonApplication sqlite-utils;