postgresqlPackages.pgroonga: modernize
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPostgresqlExtension,
|
||||
fetchFromGitHub,
|
||||
groonga,
|
||||
lib,
|
||||
msgpack-c,
|
||||
pkg-config,
|
||||
postgresql,
|
||||
msgpack-c,
|
||||
groonga,
|
||||
buildPostgresqlExtension,
|
||||
stdenv,
|
||||
xxHash,
|
||||
}:
|
||||
|
||||
@@ -17,7 +17,7 @@ buildPostgresqlExtension rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "pgroonga";
|
||||
repo = "pgroonga";
|
||||
rev = "${version}";
|
||||
tag = "${version}";
|
||||
hash = "sha256-a5nNtlUiFBuuqWAjIN0gU/FaoV3VpJh+/fab8R/77dw=";
|
||||
};
|
||||
|
||||
@@ -34,7 +34,7 @@ buildPostgresqlExtension rec {
|
||||
"MSGPACK_PACKAGE_NAME=msgpack-c"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "PostgreSQL extension to use Groonga as the index";
|
||||
longDescription = ''
|
||||
PGroonga is a PostgreSQL extension to use Groonga as the index.
|
||||
@@ -44,8 +44,8 @@ buildPostgresqlExtension rec {
|
||||
'';
|
||||
homepage = "https://pgroonga.github.io/";
|
||||
changelog = "https://github.com/pgroonga/pgroonga/releases/tag/${version}";
|
||||
license = licenses.postgresql;
|
||||
license = lib.licenses.postgresql;
|
||||
platforms = postgresql.meta.platforms;
|
||||
maintainers = with maintainers; [ DerTim1 ];
|
||||
maintainers = with lib.maintainers; [ DerTim1 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user