summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/json.nix
blob: c0f9b00d6ad7a9c00f7f1decd5698265f0cc5dcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, buildDunePackage, resto, json-data-encoding, json-data-encoding-bson }:

buildDunePackage {
  pname = "resto-json";
  inherit (resto) src version meta doCheck;
  duneVersion = "3";

  propagatedBuildInputs = [
    resto
    json-data-encoding
    json-data-encoding-bson
  ];
}