mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
30 lines
793 B
Nix
30 lines
793 B
Nix
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "pgjwt";
|
|
version = "unstable-2021-11-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michelp";
|
|
repo = "pgjwt";
|
|
rev = "9742dab1b2f297ad3811120db7b21451bca2d3c9";
|
|
sha256 = "sha256-Hw3R9bMGDmh+dMzjmqZSy/rT4mX8cPU969OJiARFg10=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/share/postgresql/extension
|
|
cp pg*sql *.control $out/share/postgresql/extension
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "PostgreSQL implementation of JSON Web Tokens";
|
|
longDescription = ''
|
|
sign() and verify() functions to create and verify JSON Web Tokens.
|
|
'';
|
|
license = licenses.mit;
|
|
platforms = postgresql.meta.platforms;
|
|
maintainers = with maintainers; [spinus];
|
|
};
|
|
}
|