sqldef: 0.17.20 -> 0.17.23 (#352019)

This commit is contained in:
Peder Bergebakken Sundt
2024-11-20 18:47:01 +01:00
committed by GitHub
+9 -9
View File
@@ -2,29 +2,29 @@
buildGoModule rec {
pname = "sqldef";
version = "0.17.20";
version = "0.17.23";
src = fetchFromGitHub {
owner = "k0kubun";
owner = "sqldef";
repo = "sqldef";
rev = "v${version}";
hash = "sha256-r175nhzPLoU4CBjEiktsQIuQTgRJ64uW1MhDKHEDR+4=";
hash = "sha256-hknfPVOtxs2Hv4GrbIM1tyrmJHWnK86qdD1FQUmpk10=";
};
proxyVendor = true;
vendorHash = "sha256-reYZUuZTNeNFrbrDQPVXwx+UuBGdEmTdSowbneZc/No=";
vendorHash = "sha256-N9+theiJnDP8Nbe0pcEPpjYcy2YVyueF8Q2bdLCCbEc=";
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
# The test requires a running database
doCheck = false;
meta = with lib; {
meta = {
description = "Idempotent SQL schema management tool";
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 ];
license = with lib.licenses; [ mit /* for everything except parser */ asl20 /* for parser */ ];
homepage = "https://github.com/sqldef/sqldef";
changelog = "https://github.com/sqldef/sqldef/blob/v${version}/CHANGELOG.md";
maintainers = with lib.maintainers; [ kgtkr ];
};
}