postgresqlPackages.pgjwt: add platforms

This commit is contained in:
Mario Rodas
2019-09-13 04:24:00 -05:00
parent 1d3bfd35e2
commit 29254b0bd7
+2 -1
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];
}; };
} }