summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2022-08-17 15:43:38 +0800
committerGitHub <noreply@github.com>2022-08-17 15:43:38 +0800
commit7503fa5b8b3fe3624d69c143cd7b3711765936c0 (patch)
treea4d4a6b77699fe3e4f52b65f03a00da7d405f02b
parentace5332dcb78675cf21d7219b1d628614be21697 (diff)
parent5e3486c15c26c0e0053bbebdf59fac2b6b995ba1 (diff)
Merge pull request #185753 from adisbladis/sqlc-1_15_0
sqlc: 1.14.0 -> 1.15.0
-rw-r--r--pkgs/development/tools/database/sqlc/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/database/sqlc/default.nix b/pkgs/development/tools/database/sqlc/default.nix
index 85031b3aad70..12133f6daa87 100644
--- a/pkgs/development/tools/database/sqlc/default.nix
+++ b/pkgs/development/tools/database/sqlc/default.nix
@@ -1,7 +1,7 @@
{ lib, buildGoModule, fetchFromGitHub }:
let
- version = "1.14.0";
+ version = "1.15.0";
in
buildGoModule {
pname = "sqlc";
@@ -11,18 +11,18 @@ buildGoModule {
owner = "kyleconroy";
repo = "sqlc";
rev = "v${version}";
- sha256 = "sha256-+JkNuN5Hv1g1+UpJEBZpf7QV/3A85IVzMa5cfeRSQRo=";
+ sha256 = "sha256-Ufa5A+lsFSyxe7s0DbLhWW298Y1yaSCazMjGBryyMYY=";
};
proxyVendor = true;
- vendorSha256 = "sha256-QG/pIsK8krBaO5IDgln10jpCnlw3XC8sIYyzuwYjTs0=";
+ vendorSha256 = "sha256-KatF4epCzyQCoAGk1verjAYNrFcmcLiVyDI2542Vm3k=";
subPackages = [ "cmd/sqlc" ];
- meta = with lib; {
+ meta = {
description = "Generate type-safe code from SQL";
homepage = "https://sqlc.dev/";
- license = licenses.mit;
- maintainers = [ maintainers.adisbladis ];
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.adisbladis ];
};
}