usql: 0.19.17 -> 0.19.19 (#389303)

This commit is contained in:
Nick Cao
2025-03-12 19:40:12 -04:00
committed by GitHub
+8 -8
View File
@@ -11,13 +11,13 @@
buildGoModule rec {
pname = "usql";
version = "0.19.17";
version = "0.19.19";
src = fetchFromGitHub {
owner = "xo";
repo = "usql";
rev = "v${version}";
hash = "sha256-ouUIGvVyQY6tT97HWeDmVvKsVRIVZYI/GEF4P2k7F8Q=";
tag = "v${version}";
hash = "sha256-IDCF/etK9mNjdcgQWEDj9tXP12c2CcEA2RamKlCXgRE=";
};
buildInputs = [
@@ -25,7 +25,7 @@ buildGoModule rec {
icu
];
vendorHash = "sha256-s7lW8kNFfag6TUjzjjUAmAtF/T2gpi7tfnmvuPnSJx8=";
vendorHash = "sha256-Z1Mjc+sI+8VHO9TTXUzF4yRvCtDs4sr/dGtjacXWCfE=";
proxyVendor = true;
# Exclude drivers from the bad group
@@ -67,16 +67,16 @@ buildGoModule rec {
};
};
meta = with lib; {
meta = {
description = "Universal command-line interface for SQL databases";
homepage = "https://github.com/xo/usql";
changelog = "https://github.com/xo/usql/releases/tag/v${version}";
license = licenses.mit;
license = lib.licenses.mit;
mainProgram = "usql";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
georgyo
anthonyroussel
];
platforms = with platforms; linux ++ darwin;
platforms = with lib.platforms; linux ++ darwin;
};
}