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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
257 B
Nix
Raw Normal View History

{
buildDunePackage,
resto,
uri,
}:
buildDunePackage {
pname = "resto-acl";
2022-05-31 07:14:43 +00:00
inherit (resto)
src
version
meta
doCheck
;
2022-05-31 07:14:43 +00:00
minimalOCamlVersion = "4.10";
2023-01-09 09:34:14 +00:00
duneVersion = "3";
propagatedBuildInputs = [
resto
uri
];
}