pg-schema-diff: init at 1.0.2, add maintainer (#451729)

This commit is contained in:
Sandro
2025-11-24 13:16:49 +00:00
committed by GitHub
2 changed files with 36 additions and 0 deletions
+5
View File
@@ -3442,6 +3442,11 @@
githubId = 10164833;
name = "Birk Bohne";
};
bitbloxhub = {
name = "bitbloxhub";
github = "bitbloxhub";
githubId = 45184892;
};
bizmyth = {
email = "andrew.p.council@gmail.com";
github = "bizmythy";
@@ -0,0 +1,31 @@
{
lib,
buildGoModule,
fetchFromGitHub,
postgresql,
}:
buildGoModule (finalAttrs: {
pname = "pg-schema-diff";
version = "1.0.2";
src = fetchFromGitHub {
owner = "stripe";
repo = "pg-schema-diff";
tag = "v${finalAttrs.version}";
hash = "sha256-u0niTTqrzsI4u0OGY5qkgbitadcbEK/ElFGnPJsEMwo=";
};
nativeCheckInputs = [
postgresql
];
vendorHash = "sha256-Hs3xrGP8eJwW3rQ9nViB9sqC8spjHV6rCoy1u/SYHak=";
meta = {
description = "Go library for diffing Postgres schemas and generating SQL migrations";
homepage = "https://github.com/stripe/pg-schema-diff";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.bitbloxhub ];
mainProgram = "pg-schema-diff";
};
})