Merge pull request #299655 from aaronjheng/sqldef

sqldef: 0.17.1 -> 0.17.5
This commit is contained in:
Weijia Wang 2024-04-06 01:33:56 +02:00 committed by GitHub
commit 65e26b36e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 ];