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

56 lines
1.1 KiB
Nix
Raw Normal View History

2021-06-08 13:58:44 +01:00
{ lib
, fetchFromGitHub
, buildGoModule
, unixODBC
, icu
}:
buildGoModule rec {
pname = "usql";
2021-08-22 19:41:18 +01:00
version = "0.9.3";
2021-06-08 13:58:44 +01:00
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
2021-08-22 19:41:18 +01:00
sha256 = "sha256-NHeJSWrcX4hYBJpZu/UjQ1ZWfcUnWFCV0Meo+XveDOw=";
2021-06-08 13:58:44 +01:00
};
2021-08-22 19:41:18 +01:00
vendorSha256 = "sha256-EsLLBhyOcupx5LrJyWWMu4RAGWDKo3keflyZOASKldE=";
2021-06-08 13:58:44 +01:00
buildInputs = [ unixODBC icu ];
# These tags and flags are copied from build-release.sh
2021-08-05 22:52:29 +01:00
tags = [
2021-06-08 13:58:44 +01: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 ];
# usql does not build on ARM.
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}