ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / resto / default.nix
blob5018a282e59ec09909e4e9f7b50ff17e4435da2d
2   lib,
3   fetchFromGitLab,
4   buildDunePackage,
5   uri,
6 }:
8 buildDunePackage rec {
9   pname = "resto";
10   version = "1.2";
11   duneVersion = "3";
12   src = fetchFromGitLab {
13     owner = "nomadic-labs";
14     repo = "resto";
15     rev = "v${version}";
16     hash = "sha256-VdkYUy7Fi53ku6F/1FV55/VcyF/tDZKN4NTMabDd/T4=";
17   };
19   propagatedBuildInputs = [
20     uri
21   ];
23   # resto has infinite recursion in their tests
24   doCheck = false;
26   meta = {
27     description = "Minimal OCaml library for type-safe HTTP/JSON RPCs";
28     homepage = "https://gitlab.com/nomadic-labs/resto";
29     license = lib.licenses.mit;
30     maintainers = [ lib.maintainers.ulrikstrid ];
31   };