13 lines
229 B
Nix
13 lines
229 B
Nix
{ buildDunePackage, resto, resto-directory, cohttp-lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-cohttp";
|
|
inherit (resto) src version meta doCheck;
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
resto-directory
|
|
cohttp-lwt
|
|
];
|
|
}
|