From 9b7148792a5ffa53bca92f90f452860824cba24d Mon Sep 17 00:00:00 2001 From: bitbloxhub <45184892+bitbloxhub@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:04:32 +0000 Subject: [PATCH 1/2] maintainers: add bitbloxhub --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 08a73e04f317..572c3f3530e7 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3400,6 +3400,11 @@ githubId = 10164833; name = "Birk Bohne"; }; + bitbloxhub = { + name = "bitbloxhub"; + github = "bitbloxhub"; + githubId = 45184892; + }; bizmyth = { email = "andrew.p.council@gmail.com"; github = "bizmythy"; From ac1eea505601d51beadf9ac27203c5154836f865 Mon Sep 17 00:00:00 2001 From: bitbloxhub <45184892+bitbloxhub@users.noreply.github.com> Date: Sun, 23 Nov 2025 20:53:23 +0000 Subject: [PATCH 2/2] pg-schema-diff: init at 1.0.2 --- pkgs/by-name/pg/pg-schema-diff/package.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/pg/pg-schema-diff/package.nix diff --git a/pkgs/by-name/pg/pg-schema-diff/package.nix b/pkgs/by-name/pg/pg-schema-diff/package.nix new file mode 100644 index 000000000000..f4848d0857ff --- /dev/null +++ b/pkgs/by-name/pg/pg-schema-diff/package.nix @@ -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"; + }; +})