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

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

82 lines
1.7 KiB
Nix
Raw Normal View History

2021-06-08 15:58:44 +03:00
{ lib
2022-11-15 00:31:16 +03:00
, stdenv
2021-06-08 15:58:44 +03:00
, fetchFromGitHub
, buildGoModule
, unixODBC
, icu
2022-11-15 00:31:16 +03:00
, nix-update-script
, testers
, usql
2021-06-08 15:58:44 +03:00
}:
buildGoModule rec {
pname = "usql";
2022-12-21 22:56:34 +03:00
version = "0.13.4";
2021-06-08 15:58:44 +03:00
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
2022-12-21 22:56:34 +03:00
hash = "sha256-YshGqp27N1iOBWSE9UH1zsQlFar2uKf4Jq2W8kSN0Qc=";
2021-06-08 15:58:44 +03:00
};
buildInputs = [ unixODBC icu ];
2022-12-21 22:56:34 +03:00
vendorHash = "sha256-qHs5Z7NRdQKPOmYSozhSVQfINMxJewVwQ1Gi4SMWT+8=";
2022-11-15 00:31:16 +03:00
proxyVendor = true;
# Exclude broken impala & hive driver
# These drivers break too often and are not used.
2022-09-12 23:53:15 +03:00
#
# See https://github.com/xo/usql/pull/347
#
excludedPackages = [
"impala"
2022-11-15 00:31:16 +03:00
"hive"
2022-09-12 23:53:15 +03:00
];
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"
2022-12-21 22:56:34 +03:00
"sqlite_math_functions"
2021-06-08 15:58:44 +03:00
"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;
2022-11-15 00:31:16 +03:00
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
tests.version = testers.testVersion {
inherit version;
package = usql;
command = "usql --version";
};
};
2021-06-08 15:58:44 +03:00
meta = with lib; {
description = "Universal command-line interface for SQL databases";
homepage = "https://github.com/xo/usql";
2022-11-15 00:31:16 +03:00
changelog = "https://github.com/xo/usql/releases/tag/v${version}";
2021-06-08 15:58:44 +03:00
license = licenses.mit;
maintainers = with maintainers; [ georgyo anthonyroussel ];
2022-09-12 23:59:34 +03:00
platforms = with platforms; linux ++ darwin;
2021-06-08 15:58:44 +03:00
};
}