postgresqlPackages.pgx_ulid: 0.2.2 -> 0.2.3

This commit is contained in:
myypo
2026-03-12 17:49:57 +02:00
parent 7c95195664
commit c58f0e9fea
+5 -7
View File
@@ -1,6 +1,6 @@
{
buildPgrxExtension,
cargo-pgrx_0_16_1,
cargo-pgrx_0_17_0,
fetchFromGitHub,
lib,
nix-update-script,
@@ -9,19 +9,19 @@
}:
buildPgrxExtension (finalAttrs: {
inherit postgresql;
cargo-pgrx = cargo-pgrx_0_16_1;
cargo-pgrx = cargo-pgrx_0_17_0;
pname = "pgx_ulid";
version = "0.2.2";
version = "0.2.3";
src = fetchFromGitHub {
owner = "pksunkara";
repo = "pgx_ulid";
tag = "v${finalAttrs.version}";
hash = "sha256-7zOAjQPdwaDwAz2Es5KX3HstTwY6wKNuB9b+xnnXNP0=";
hash = "sha256-j4whXsKyDiV+3F5Xp5Q5vODT7LGS4IVz4VfrhsyYw14=";
};
cargoHash = "sha256-4YuTOCE142BDDteB9ZQdxzI8EUXN+jRZfy1eq64qHtg=";
cargoHash = "sha256-oQTetxtIqrVqSDcO8GEMAJ20/RKyYoBAIVflAcWHrPA=";
postInstall = ''
# Upstream renames the extension when packaging as well as upgrade scripts
@@ -37,8 +37,6 @@ buildPgrxExtension (finalAttrs: {
};
meta = {
# Support for PostgreSQL 13 was removed in 0.2.0: https://github.com/pksunkara/pgx_ulid/blob/084778c3e2af08d16ec5ec3ef4e8f345ba0daa33/CHANGELOG.md?plain=1#L6
broken = lib.versionOlder postgresql.version "14";
description = "ULID Postgres extension written in Rust";
homepage = "https://github.com/pksunkara/pgx_ulid";
changelog = "https://github.com/pksunkara/pgx_ulid/blob/v${finalAttrs.version}/CHANGELOG.md";