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
13 lines
214 B
Nix
13 lines
214 B
Nix
{ lib, buildDunePackage, resto, resto-json, uri }:
|
|
|
|
buildDunePackage {
|
|
pname = "ezresto";
|
|
inherit (resto) src version meta useDune2 doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
uri
|
|
resto
|
|
resto-json
|
|
];
|
|
}
|