3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.jwto: 0.3.0 → 0.4.0

This commit is contained in:
Vincent Laporte 2022-12-21 07:44:03 +01:00 committed by Vincent Laporte
parent f9e4224c80
commit 5c15e1c8cf

View file

@ -1,26 +1,26 @@
{ lib, buildDunePackage, fetchFromGitHub, alcotest, cryptokit, fmt, yojson
{ lib, buildDunePackage, fetchFromGitHub, alcotest, digestif, fmt, yojson
, ppxlib
, base64, re, ppx_deriving }:
buildDunePackage rec {
pname = "jwto";
version = "0.3.0";
version = "0.4.0";
useDune2 = true;
duneVersion = "3";
minimumOCamlVersion = "4.05";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "sporto";
repo = "jwto";
rev = version;
sha256 = "1p799zk8j9c0002xzi2x7ndj1bzqf14744ampcqndrjnsi7mq71s";
hash = "sha256-TOWwNyrOqboCm8Y4mM6GgtmxGO3NmyDdAX7m8CifA7Y=";
};
buildInputs = [ ppxlib ];
propagatedBuildInputs =
[ cryptokit fmt yojson base64 re ppx_deriving ];
[ digestif fmt yojson base64 re ppx_deriving ];
checkInputs = [ alcotest ];