2021-06-08 14:58:44 +02:00
|
|
|
{ lib
|
2023-11-22 22:40:47 +01:00
|
|
|
, stdenv
|
2021-06-08 14:58:44 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoModule
|
|
|
|
, unixODBC
|
|
|
|
, icu
|
2022-11-14 22:31:16 +01:00
|
|
|
, nix-update-script
|
|
|
|
, testers
|
|
|
|
, usql
|
2021-06-08 14:58:44 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "usql";
|
2024-03-29 20:59:47 +01:00
|
|
|
version = "0.18.1";
|
2021-06-08 14:58:44 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xo";
|
|
|
|
repo = "usql";
|
|
|
|
rev = "v${version}";
|
2024-03-29 20:59:47 +01:00
|
|
|
hash = "sha256-2/qB05LQGw4XjnODn0dzuTVqkc9X6YACJ45z+/juHXk=";
|
2021-06-08 14:58:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unixODBC icu ];
|
|
|
|
|
2024-03-29 20:59:47 +01:00
|
|
|
vendorHash = "sha256-PFXULlYMSUoJ23jDA3CTImiUAlcoqHoh1zq+749qO2g=";
|
2022-11-14 22:31:16 +01:00
|
|
|
proxyVendor = true;
|
|
|
|
|
2024-03-29 20:59:47 +01:00
|
|
|
# Exclude drivers from the bad group
|
2022-11-14 22:31:16 +01:00
|
|
|
# These drivers break too often and are not used.
|
2022-09-12 22:53:15 +02:00
|
|
|
#
|
|
|
|
excludedPackages = [
|
2023-08-24 22:50:16 +02:00
|
|
|
"impala"
|
2022-09-12 22:53:15 +02:00
|
|
|
];
|
|
|
|
|
2023-11-14 11:02:50 +01:00
|
|
|
# These tags and flags are copied from build.sh
|
2021-08-05 23:52:29 +02:00
|
|
|
tags = [
|
2021-06-08 14:58:44 +02:00
|
|
|
"most"
|
|
|
|
"sqlite_app_armor"
|
|
|
|
"sqlite_fts5"
|
|
|
|
"sqlite_introspect"
|
|
|
|
"sqlite_json1"
|
2022-12-21 20:56:34 +01:00
|
|
|
"sqlite_math_functions"
|
2021-06-08 14:58:44 +02:00
|
|
|
"sqlite_stat4"
|
|
|
|
"sqlite_userauth"
|
|
|
|
"sqlite_vtable"
|
|
|
|
"no_adodb"
|
|
|
|
];
|
|
|
|
|
|
|
|
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 22:31:16 +01:00
|
|
|
passthru = {
|
2022-12-25 23:11:14 +01:00
|
|
|
updateScript = nix-update-script { };
|
2022-11-14 22:31:16 +01:00
|
|
|
tests.version = testers.testVersion {
|
|
|
|
inherit version;
|
|
|
|
package = usql;
|
|
|
|
command = "usql --version";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-06-08 14:58:44 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Universal command-line interface for SQL databases";
|
|
|
|
homepage = "https://github.com/xo/usql";
|
2022-11-14 22:31:16 +01:00
|
|
|
changelog = "https://github.com/xo/usql/releases/tag/v${version}";
|
2021-06-08 14:58:44 +02:00
|
|
|
license = licenses.mit;
|
2023-09-30 19:30:18 +02:00
|
|
|
mainProgram = "usql";
|
2022-09-12 22:54:05 +02:00
|
|
|
maintainers = with maintainers; [ georgyo anthonyroussel ];
|
2022-09-12 22:59:34 +02:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2021-06-08 14:58:44 +02:00
|
|
|
};
|
|
|
|
}
|