usql: 0.14.10 -> 0.15.0

See https://github.com/xo/usql/releases/tag/v0.15.0
This commit is contained in:
Anthony Roussel 2023-08-24 22:50:16 +02:00
parent ac7ed741a5
commit 80c9e8ee47
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E
2 changed files with 9 additions and 6 deletions

View File

@ -10,28 +10,29 @@
buildGoModule rec {
pname = "usql";
version = "0.14.10";
version = "0.15.0";
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
hash = "sha256-4T8h4KPouhjGaeeThCULilzmPs2CVGBpiqXYmtSkCO4=";
hash = "sha256-YjRbrhJSbX1OLEc7A72ubg1KtzJSWY0KphD4d8dAKQ8=";
};
buildInputs = [ unixODBC icu ];
vendorHash = "sha256-a+hcd0vQ0jt3Dp+YnMORe6yIohbmpN22sOUJ6G1i4P4=";
vendorHash = "sha256-OZ/eui+LR+Gn1nmu9wryGmz3jiUMuDScmTZ5G8UKWP8=";
proxyVendor = true;
# Exclude broken impala & hive driver
# Exclude broken genji, hive & impala drivers (bad group)
# These drivers break too often and are not used.
#
# See https://github.com/xo/usql/pull/347
#
excludedPackages = [
"impala"
"genji"
"hive"
"impala"
];
# These tags and flags are copied from build-release.sh

View File

@ -41256,7 +41256,9 @@ with pkgs;
usb-reset = callPackage ../applications/misc/usb-reset { };
usql = callPackage ../applications/misc/usql { };
usql = callPackage ../applications/misc/usql {
buildGoModule = buildGo121Module;
};
utf8cpp = callPackage ../development/libraries/utf8cpp { };