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

buildDunePackage {
  pname = "ezresto";
  inherit (resto) src version meta useDune2 doCheck;

  propagatedBuildInputs = [
    uri
    resto
    resto-json
  ];
}