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.

14 lines
213 B
Nix
Raw Normal View History

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