mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
35 lines
762 B
Nix
35 lines
762 B
Nix
{ lib, buildDunePackage, fetchFromGitHub, alcotest, digestif, fmt, yojson
|
|
, ppxlib
|
|
, base64, re, ppx_deriving }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "jwto";
|
|
version = "0.4.0";
|
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sporto";
|
|
repo = "jwto";
|
|
rev = version;
|
|
hash = "sha256-TOWwNyrOqboCm8Y4mM6GgtmxGO3NmyDdAX7m8CifA7Y=";
|
|
};
|
|
|
|
buildInputs = [ ppxlib ];
|
|
|
|
propagatedBuildInputs =
|
|
[ digestif fmt yojson base64 re ppx_deriving ];
|
|
|
|
checkInputs = [ alcotest ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/sporto/jwto";
|
|
description = "JSON Web Tokens (JWT) for OCaml";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ Zimmi48 jtcoolen ];
|
|
};
|
|
}
|