postgresqlPackages.pgjwt: add platforms

This commit is contained in:
Mario Rodas 2019-09-13 04:24:00 -05:00
parent 1d3bfd35e2
commit 29254b0bd7
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

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