Commit d9d7c358 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.yaml: use Dune 3

parent fd2191f8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10,10 +10,11 @@ buildDunePackage rec {

  src = fetchurl {
    url = "https://github.com/avsm/ocaml-yaml/releases/download/v${version}/yaml-${version}.tbz";
    sha256 = "sha256-0KngriGEpp5tcgK/43B9EEOdMacSQYYCNLGfAgRS7Mc=";
    hash = "sha256-0KngriGEpp5tcgK/43B9EEOdMacSQYYCNLGfAgRS7Mc=";
  };

  minimalOCamlVersion = "4.13";
  duneVersion = "3";

  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ bos ctypes ];
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ buildDunePackage rec {

  inherit (yaml) version src;

  duneVersion = "3";

  propagatedBuildInputs = [ yaml ppx_sexp_conv sexplib ];

  meta = yaml.meta // {