Merge pull request #311994 from jopejoe1/pg_libversion/update/2.0.1

postgresql16Packages.pg_libversion: 2.0.0 -> 2.0.1
This commit is contained in:
Weijia Wang 2024-05-16 09:33:59 +02:00 committed by GitHub
commit 4a8c099bb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, gitUpdater
, pkg-config
, postgresql
, libversion
@ -8,13 +9,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "pg_libversion";
version = "2.0.0";
version = "2.0.1";
src = fetchFromGitHub {
owner = "repology";
repo = "postgresql-libversion";
rev = finalAttrs.version;
hash = "sha256-60HX/Y+6QIzqmDnjNpgO4GCbDhNfeek9myMWoYLdrAA=";
hash = "sha256-3nqXaBwPRUSo6wUY5YMjJ/nFFKmhgP1zFKapD+RqSDw=";
};
nativeBuildInputs = [
@ -36,6 +37,8 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "PostgreSQL extension with support for version string comparison";
homepage = "https://github.com/repology/postgresql-libversion";