depot/third_party/nixpkgs/pkgs/development/ocaml-modules/resto/acl.nix

14 lines
224 B
Nix
Raw Normal View History

{ lib, buildDunePackage, resto, uri }:
buildDunePackage {
pname = "resto-acl";
inherit (resto) src version meta useDune2 doCheck;
minimalOCamlVersion = "4.05";
propagatedBuildInputs = [
resto
uri
];
}