depot/third_party/nixpkgs/pkgs/development/ocaml-modules/resto/ezresto.nix

13 lines
214 B
Nix
Raw Normal View History

{ lib, buildDunePackage, resto, resto-json, uri }:
buildDunePackage {
pname = "ezresto";
inherit (resto) src version meta useDune2 doCheck;
propagatedBuildInputs = [
uri
resto
resto-json
];
}