Anthony Roussel 2024-03-29 20:59:47 +01:00
parent ddecb48547
commit fac20e14d7
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -11,28 +11,24 @@
buildGoModule rec { buildGoModule rec {
pname = "usql"; pname = "usql";
version = "0.17.5"; version = "0.18.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xo"; owner = "xo";
repo = "usql"; repo = "usql";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-Lh5CProffPB/GEYvU1h7St8zgmnS1QOjBgvdUXlsGzc="; hash = "sha256-2/qB05LQGw4XjnODn0dzuTVqkc9X6YACJ45z+/juHXk=";
}; };
buildInputs = [ unixODBC icu ]; buildInputs = [ unixODBC icu ];
vendorHash = "sha256-IdqSTwQeMRjB5sE53VvTVAXPyIyN+pMj4XziIT31rV0="; vendorHash = "sha256-PFXULlYMSUoJ23jDA3CTImiUAlcoqHoh1zq+749qO2g=";
proxyVendor = true; proxyVendor = true;
# Exclude broken genji, hive & impala drivers (bad group) # Exclude drivers from the bad group
# These drivers break too often and are not used. # These drivers break too often and are not used.
# #
# See https://github.com/xo/usql/pull/347
#
excludedPackages = [ excludedPackages = [
"genji"
"hive"
"impala" "impala"
]; ];