mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
29 lines
429 B
Nix
29 lines
429 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, resto
|
|
, resto-directory
|
|
, resto-acl
|
|
, resto-cohttp
|
|
, resto-cohttp-client
|
|
, resto-cohttp-server
|
|
, uri
|
|
, lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-cohttp-self-serving-client";
|
|
inherit (resto) src version meta doCheck;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
resto-directory
|
|
resto-acl
|
|
resto-cohttp
|
|
resto-cohttp-client
|
|
resto-cohttp-server
|
|
uri
|
|
lwt
|
|
];
|
|
}
|