12 lines
219 B
Nix
12 lines
219 B
Nix
{ lib, buildDunePackage, resto, resto-json, lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-directory";
|
|
inherit (resto) src version meta doCheck;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
lwt
|
|
];
|
|
}
|