mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
12 lines
202 B
Nix
12 lines
202 B
Nix
{ buildDunePackage, resto, lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-directory";
|
|
inherit (resto) src version meta doCheck;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
lwt
|
|
];
|
|
}
|