nixpkgs/pkgs/by-name/us/usql/package.nix

86 lines
1.8 KiB
Nix
Raw Normal View History

2021-06-08 12:58:44 +00:00
{ lib
, stdenv
2021-06-08 12:58:44 +00:00
, fetchFromGitHub
, buildGoModule
, unixODBC
, icu
2022-11-14 21:31:16 +00:00
, nix-update-script
, testers
, usql
2021-06-08 12:58:44 +00:00
}:
buildGoModule rec {
pname = "usql";
2023-12-08 00:54:00 +00:00
version = "0.17.0";
2021-06-08 12:58:44 +00:00
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
2023-12-08 00:54:00 +00:00
hash = "sha256-AcxtIdPflMT2SGM2dgbbiFx5S+NlM7neMuXrIhysFPo=";
2021-06-08 12:58:44 +00:00
};
buildInputs = [ unixODBC icu ];
2023-12-08 00:54:00 +00:00
vendorHash = "sha256-UsYEhqsQUhRROe9HX4WIyi0OeMLHE87JOfp6vwbVMMo=";
2022-11-14 21:31:16 +00:00
proxyVendor = true;
# Exclude broken genji, hive & impala drivers (bad group)
2022-11-14 21:31:16 +00:00
# These drivers break too often and are not used.
2022-09-12 20:53:15 +00:00
#
# See https://github.com/xo/usql/pull/347
#
excludedPackages = [
"genji"
2022-11-14 21:31:16 +00:00
"hive"
"impala"
2022-09-12 20:53:15 +00:00
];
# These tags and flags are copied from build.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"
2022-12-21 19:56:34 +00:00
"sqlite_math_functions"
2021-06-08 12:58:44 +00:00
"sqlite_stat4"
"sqlite_userauth"
"sqlite_vtable"
"no_adodb"
];
# Work around https://github.com/NixOS/nixpkgs/issues/166205.
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
};
2021-06-08 12:58:44 +00:00
ldflags = [
"-s"
"-w"
"-X github.com/xo/usql/text.CommandVersion=${version}"
];
# All the checks currently require docker instances to run the databases.
doCheck = false;
2022-11-14 21:31:16 +00:00
passthru = {
updateScript = nix-update-script { };
2022-11-14 21:31:16 +00:00
tests.version = testers.testVersion {
inherit version;
package = usql;
command = "usql --version";
};
};
2021-06-08 12:58:44 +00:00
meta = with lib; {
description = "Universal command-line interface for SQL databases";
homepage = "https://github.com/xo/usql";
2022-11-14 21:31:16 +00:00
changelog = "https://github.com/xo/usql/releases/tag/v${version}";
2021-06-08 12:58:44 +00:00
license = licenses.mit;
2023-09-30 17:30:18 +00:00
mainProgram = "usql";
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
};
}