sqldef: 0.17.1 -> 0.17.5

This commit is contained in:
Aaron Jheng 2024-03-28 13:45:08 +08:00
parent 2d216878fd
commit afe953b105
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
1 changed files with 4 additions and 4 deletions

View File

@ -1,14 +1,14 @@
{ lib, buildGoModule, fetchFromGitHub, libpg_query, xxHash, postgresql }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sqldef";
version = "0.17.1";
version = "0.17.5";
src = fetchFromGitHub {
owner = "k0kubun";
repo = "sqldef";
rev = "v${version}";
hash = "sha256-S2hXwIQU9iKSN9nYG6KacO+bZtgNtMnPQoQaS6DNH30=";
hash = "sha256-iEQHrGGXfN/id4aV96MN6WKUl5XGL17u8mlPJKc6cvg=";
};
proxyVendor = true;
@ -22,7 +22,7 @@ buildGoModule rec {
meta = with lib; {
description = "Idempotent SQL schema management tool";
license = with licenses; [ mit /* for everything except parser */ asl20 /* for parser */ ];
license = with licenses; [ mit /* for everything except parser */ asl20 /* for parser */ ];
homepage = "https://github.com/k0kubun/sqldef";
changelog = "https://github.com/k0kubun/sqldef/blob/v${version}/CHANGELOG.md";
maintainers = with maintainers; [ kgtkr ];