chatdesk-ui/postgres_15.8.1.044/nix/ext/pgjwt.nix

32 lines
858 B
Nix

{ lib, stdenv, fetchFromGitHub, postgresql, unstableGitUpdater }:
stdenv.mkDerivation rec {
pname = "pgjwt";
version = "9742dab1b2f297ad3811120db7b21451bca2d3c9";
src = fetchFromGitHub {
owner = "michelp";
repo = "pgjwt";
rev = "${version}";
hash = "sha256-Hw3R9bMGDmh+dMzjmqZSy/rT4mX8cPU969OJiARFg10=";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/postgresql/extension
cp pg*sql *.control $out/share/postgresql/extension
'';
passthru.updateScript = unstableGitUpdater { };
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; [samrose];
};
}