Merge pull request #251223 from anthonyroussel/usql_0_15

usql: 0.14.10 -> 0.15.0

authored by

OTABI Tomoya and committed by
GitHub
c7b1de0d 8b14b6d3

+9 -6
+6 -5
pkgs/applications/misc/usql/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "usql"; 13 - version = "0.14.10"; 13 + version = "0.15.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "xo"; 17 17 repo = "usql"; 18 18 rev = "v${version}"; 19 - hash = "sha256-4T8h4KPouhjGaeeThCULilzmPs2CVGBpiqXYmtSkCO4="; 19 + hash = "sha256-YjRbrhJSbX1OLEc7A72ubg1KtzJSWY0KphD4d8dAKQ8="; 20 20 }; 21 21 22 22 buildInputs = [ unixODBC icu ]; 23 23 24 - vendorHash = "sha256-a+hcd0vQ0jt3Dp+YnMORe6yIohbmpN22sOUJ6G1i4P4="; 24 + vendorHash = "sha256-OZ/eui+LR+Gn1nmu9wryGmz3jiUMuDScmTZ5G8UKWP8="; 25 25 proxyVendor = true; 26 26 27 - # Exclude broken impala & hive driver 27 + # Exclude broken genji, hive & impala drivers (bad group) 28 28 # These drivers break too often and are not used. 29 29 # 30 30 # See https://github.com/xo/usql/pull/347 31 31 # 32 32 excludedPackages = [ 33 + "genji" 34 + "hive" 33 35 "impala" 34 - "hive" 35 36 ]; 36 37 37 38 # These tags and flags are copied from build-release.sh
+3 -1
pkgs/top-level/all-packages.nix
··· 41282 41282 41283 41283 usb-reset = callPackage ../applications/misc/usb-reset { }; 41284 41284 41285 - usql = callPackage ../applications/misc/usql { }; 41285 + usql = callPackage ../applications/misc/usql { 41286 + buildGoModule = buildGo121Module; 41287 + }; 41286 41288 41287 41289 utf8cpp = callPackage ../development/libraries/utf8cpp { }; 41288 41290