usql: init at 0.9.1

This commit is contained in:
George Shammas 2021-06-08 08:58:44 -04:00
parent 9f0e1ad7c6
commit b2cae371fe
No known key found for this signature in database
GPG Key ID: F33A952EA26A028D
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,56 @@
{ lib
, fetchFromGitHub
, buildGoModule
, unixODBC
, icu
}:
buildGoModule rec {
pname = "usql";
version = "0.9.1";
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
sha256 = "sha256-fcKn4kHIRvMdgGFKDNQg49YxLc0Y5j/8VwKoDLiXbEU=";
};
vendorSha256 = "sha256-uAV8NLnqXjIDILfnbbkVr2BOIucQ8vX89KI5yIkVtus=";
buildInputs = [ unixODBC icu ];
# These tags and flags are copied from build-release.sh
buildFlags = [ "-tags" ];
buildFlagsArray = [
"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" ];
};
}

View File

@ -31337,6 +31337,8 @@ in
urbit = callPackage ../misc/urbit { };
usql = callPackage ../applications/misc/usql { };
utf8cpp = callPackage ../development/libraries/utf8cpp { };
utf8proc = callPackage ../development/libraries/utf8proc { };