mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
14 lines
234 B
Nix
14 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
|
|
];
|
|
}
|