about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/resto/acl.nix
blob: 92a1b751ed5d78116e2a98be929ba0e4d5c5bd90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, buildDunePackage, resto, uri }:

buildDunePackage {
  pname = "resto-acl";
  inherit (resto) src version meta doCheck;

  minimalOCamlVersion = "4.10";
  duneVersion = "3";

  propagatedBuildInputs = [
    resto
    uri
  ];
}