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.

15 lines
234 B
Nix
Raw Normal View History

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