Merge pull request #201240 from anthonyroussel/usql_0_13

usql: 0.12.13 -> 0.13.1
This commit is contained in:
Guillaume Girol 2022-11-26 17:07:23 +00:00 committed by GitHub
commit 1e9a2769cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,32 +1,38 @@
{ lib { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, buildGoModule , buildGoModule
, unixODBC , unixODBC
, icu , icu
, nix-update-script
, testers
, usql
}: }:
buildGoModule rec { buildGoModule rec {
pname = "usql"; pname = "usql";
version = "0.12.13"; version = "0.13.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xo"; owner = "xo";
repo = "usql"; repo = "usql";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-F/eOD7/w8HjJBeiXagaf4yBLZcZVuy93rfVFeSESlZo="; hash = "sha256-bdejXGyvY+HAE4sOxhsZYZ5fCISEVxvfOlEjL/CgBLQ=";
}; };
vendorHash = "sha256-7rMCqTfUs89AX0VP689BmKsuvLJWU5ANJVki+JMVf7g=";
buildInputs = [ unixODBC icu ]; buildInputs = [ unixODBC icu ];
# Exclude broken impala driver vendorHash = "sha256-+4eRdr5MY9d0ordaDv8hZf4wGoZsp14MpOEp1vhr75w=";
# The driver breaks too often and is not used. proxyVendor = true;
# Exclude broken impala & hive driver
# These drivers break too often and are not used.
# #
# See https://github.com/xo/usql/pull/347 # See https://github.com/xo/usql/pull/347
# #
excludedPackages = [ excludedPackages = [
"impala" "impala"
"hive"
]; ];
# These tags and flags are copied from build-release.sh # These tags and flags are copied from build-release.sh
@ -52,9 +58,21 @@ buildGoModule rec {
# All the checks currently require docker instances to run the databases. # All the checks currently require docker instances to run the databases.
doCheck = false; doCheck = false;
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
tests.version = testers.testVersion {
inherit version;
package = usql;
command = "usql --version";
};
};
meta = with lib; { meta = with lib; {
description = "Universal command-line interface for SQL databases"; description = "Universal command-line interface for SQL databases";
homepage = "https://github.com/xo/usql"; homepage = "https://github.com/xo/usql";
changelog = "https://github.com/xo/usql/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ georgyo anthonyroussel ]; maintainers = with maintainers; [ georgyo anthonyroussel ];
platforms = with platforms; linux ++ darwin; platforms = with platforms; linux ++ darwin;