Merge pull request #68651 from marsam/postgresql-ext-add-platforms

postgresqlPackages: add missing platforms
This commit is contained in:
zimbatm 2019-09-13 14:03:30 +00:00 committed by GitHub
commit c2cbbb7010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub }: { stdenv, fetchFromGitHub, postgresql }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "pgjwt"; pname = "pgjwt";
@ -23,6 +23,7 @@ stdenv.mkDerivation {
sign() and verify() functions to create and verify JSON Web Tokens. sign() and verify() functions to create and verify JSON Web Tokens.
''; '';
license = licenses.mit; license = licenses.mit;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [spinus]; maintainers = with maintainers; [spinus];
}; };
} }

View File

@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = "https://pgroonga.github.io/"; homepage = "https://pgroonga.github.io/";
license = licenses.postgresql; license = licenses.postgresql;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [ DerTim1 ]; maintainers = with maintainers; [ DerTim1 ];
}; };
} }

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
description = "A PostgreSQL/PostGIS extension that provides geospatial routing functionality"; description = "A PostgreSQL/PostGIS extension that provides geospatial routing functionality";
homepage = https://pgrouting.org/; homepage = https://pgrouting.org/;
maintainers = [ maintainers.steve-chavez ]; maintainers = [ maintainers.steve-chavez ];
platforms = platforms.linux; platforms = postgresql.meta.platforms;
license = licenses.gpl2; license = licenses.gpl2;
}; };
} }

View File

@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
homepage = "https://repmgr.org/"; homepage = "https://repmgr.org/";
description = "Replication manager for PostgreSQL cluster"; description = "Replication manager for PostgreSQL cluster";
license = licenses.postgresql; license = licenses.postgresql;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [ zimbatm ]; maintainers = with maintainers; [ zimbatm ];
}; };
} }

View File

@ -23,6 +23,7 @@ stdenv.mkDerivation {
description = "Provides a few PostgreSQL functions for a lower-level data full text search"; description = "Provides a few PostgreSQL functions for a lower-level data full text search";
homepage = https://github.com/zulip/tsearch_extras/; homepage = https://github.com/zulip/tsearch_extras/;
license = licenses.postgresql; license = licenses.postgresql;
platforms = postgresql.meta.platforms;
maintainers = with maintainers; [ DerTim1 ]; maintainers = with maintainers; [ DerTim1 ];
}; };
} }