2021-06-08 12:58:44 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoModule
|
|
|
|
, unixODBC
|
|
|
|
, icu
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "usql";
|
2022-09-12 20:53:15 +00:00
|
|
|
version = "0.12.13";
|
2021-06-08 12:58:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xo";
|
|
|
|
repo = "usql";
|
|
|
|
rev = "v${version}";
|
2022-09-12 20:53:15 +00:00
|
|
|
hash = "sha256-F/eOD7/w8HjJBeiXagaf4yBLZcZVuy93rfVFeSESlZo=";
|
2021-06-08 12:58:44 +00:00
|
|
|
};
|
|
|
|
|
2022-09-12 20:53:15 +00:00
|
|
|
vendorHash = "sha256-7rMCqTfUs89AX0VP689BmKsuvLJWU5ANJVki+JMVf7g=";
|
2021-06-08 12:58:44 +00:00
|
|
|
|
|
|
|
buildInputs = [ unixODBC icu ];
|
|
|
|
|
2022-09-12 20:53:15 +00:00
|
|
|
# Exclude broken impala driver
|
|
|
|
# The driver breaks too often and is not used.
|
|
|
|
#
|
|
|
|
# See https://github.com/xo/usql/pull/347
|
|
|
|
#
|
|
|
|
excludedPackages = [
|
|
|
|
"impala"
|
|
|
|
];
|
|
|
|
|
2021-06-08 12:58:44 +00:00
|
|
|
# These tags and flags are copied from build-release.sh
|
2021-08-05 21:52:29 +00:00
|
|
|
tags = [
|
2021-06-08 12:58:44 +00:00
|
|
|
"most"
|
|
|
|
"sqlite_app_armor"
|
|
|
|
"sqlite_fts5"
|
|
|
|
"sqlite_introspect"
|
|
|
|
"sqlite_json1"
|
|
|
|
"sqlite_stat4"
|
|
|
|
"sqlite_userauth"
|
|
|
|
"sqlite_vtable"
|
|
|
|
"sqlite_icu"
|
|
|
|
"no_adodb"
|
|
|
|
];
|
|
|
|
|
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/xo/usql/text.CommandVersion=${version}"
|
|
|
|
];
|
|
|
|
|
|
|
|
# All the checks currently require docker instances to run the databases.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Universal command-line interface for SQL databases";
|
|
|
|
homepage = "https://github.com/xo/usql";
|
|
|
|
license = licenses.mit;
|
2022-09-12 20:54:05 +00:00
|
|
|
maintainers = with maintainers; [ georgyo anthonyroussel ];
|
2022-09-12 20:59:34 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2021-06-08 12:58:44 +00:00
|
|
|
};
|
|
|
|
}
|