mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
36 lines
768 B
Nix
36 lines
768 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 ];
|
|
|
|
nativeCheckInputs = [ 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 ];
|
|
};
|
|
}
|