mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
15 lines
234 B
Nix
15 lines
234 B
Nix
{ lib, buildDunePackage, resto, uri }:
|
|
|
|
buildDunePackage {
|
|
pname = "resto-acl";
|
|
inherit (resto) src version meta doCheck;
|
|
|
|
minimalOCamlVersion = "4.10";
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
resto
|
|
uri
|
|
];
|
|
}
|