2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-03 10:44:18 +00:00
nixpkgs/pkgs/development/ocaml-modules/resto/cohttp-self-serving-client.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
429 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, resto
, resto-directory
, resto-acl
, resto-cohttp
, resto-cohttp-client
, resto-cohttp-server
, uri
, lwt
}:
buildDunePackage {
pname = "resto-cohttp-self-serving-client";
2022-05-31 07:14:43 +00:00
inherit (resto) src version meta doCheck;
2023-01-09 09:34:14 +00:00
duneVersion = "3";
propagatedBuildInputs = [
resto
resto-directory
resto-acl
resto-cohttp
resto-cohttp-client
resto-cohttp-server
uri
lwt
];
}