nixpkgs/pkgs/applications/misc/usql/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.3 KiB
Nix
Raw Normal View History

2021-06-08 15:58:44 +03:00
{ lib
, fetchFromGitHub
, buildGoModule
, unixODBC
, icu
}:
buildGoModule rec {
pname = "usql";
2022-09-12 23:53:15 +03:00
version = "0.12.13";
2021-06-08 15:58:44 +03:00
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
2022-09-12 23:53:15 +03:00
hash = "sha256-F/eOD7/w8HjJBeiXagaf4yBLZcZVuy93rfVFeSESlZo=";
2021-06-08 15:58:44 +03:00
};
2022-09-12 23:53:15 +03:00
vendorHash = "sha256-7rMCqTfUs89AX0VP689BmKsuvLJWU5ANJVki+JMVf7g=";
2021-06-08 15:58:44 +03:00
buildInputs = [ unixODBC icu ];
2022-09-12 23:53:15 +03:00
# Exclude broken impala driver
# The driver breaks too often and is not used.
#
# See https://github.com/xo/usql/pull/347
#
excludedPackages = [
"impala"
];
2021-06-08 15:58:44 +03:00
# These tags and flags are copied from build-release.sh
2021-08-06 00:52:29 +03:00
tags = [
2021-06-08 15:58:44 +03:00
"most"
"sqlite_app_armor"
"sqlite_fts5"
"sqlite_introspect"
"sqlite_json1"
"sqlite_stat4"
"sqlite_userauth"
"sqlite_vtable"
"sqlite_icu"
"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;
meta = with lib; {
description = "Universal command-line interface for SQL databases";
homepage = "https://github.com/xo/usql";
license = licenses.mit;
maintainers = with maintainers; [ georgyo anthonyroussel ];
2021-06-08 15:58:44 +03:00
# usql does not build on ARM.
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}