Unverified Commit 80c9e8ee authored by Anthony Roussel's avatar Anthony Roussel
Browse files
parent ac7ed741
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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
+3 −1
Original line number Diff line number Diff line
@@ -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 { };