mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
0f4cee585a
ocamlPackages.resto: init at 0.6.1 ocamlPackages.resto-acl: init at 0.6.1 ocamlPackages.resto-json: init at 0.6.1 ocamlPackages.resto-directory: init at 0.6.1 ocamlPackages.resto-cohttp: init at 0.6.1 ocamlPackages.ezresto: init at 0.6.1 ocamlPackages.ezresto-directory: init at 0.6.1 ocamlPackages.resto-cohttp-server: init at 0.6.1 ocamlPackages.resto-cohttp-client: init at 0.6.1 ocamlPackages.resto-cohttp-self-serving-client: init at 0.6.1
21 lines
280 B
Nix
21 lines
280 B
Nix
{ buildDunePackage
|
|
, resto
|
|
, resto-directory
|
|
, resto-cohttp
|
|
, uri
|
|
, lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-cohttp-client";
|
|
inherit (resto) src version meta useDune2 doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
resto-directory
|
|
resto-cohttp
|
|
uri
|
|
lwt
|
|
];
|
|
}
|