ocamlPackages.webmachine: use dune 3

This commit is contained in:
Vincent Laporte
2023-01-09 10:34:16 +01:00
committed by Vincent Laporte
parent 5f73c562d0
commit 389bbb0c84

View File

@@ -6,9 +6,9 @@
buildDunePackage rec {
pname = "webmachine";
version = "0.7.0";
useDune2 = true;
duneVersion = "3";
minimumOCamlVersion = "4.04";
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "inhabitedtype";
@@ -24,7 +24,7 @@ buildDunePackage rec {
doCheck = true;
meta = {
inherit (src.meta) homepage;
homepage = "https://github.com/inhabitedtype/ocaml-webmachine";
license = lib.licenses.bsd3;
description = "A REST toolkit for OCaml";
maintainers = [ lib.maintainers.vbgl ];