ocamlPackages.yaml: 2.0.1 → 2.1.0

This commit is contained in:
Vincent Laporte 2020-10-16 12:26:19 +02:00 committed by Vincent Laporte
parent c05803df2d
commit 283f53073b

View file

@ -1,17 +1,21 @@
{ lib, fetchurl, buildDunePackage { lib, fetchurl, buildDunePackage
, dune-configurator
, ppx_sexp_conv , ppx_sexp_conv
, bos, ctypes, fmt, logs, rresult, sexplib , bos, ctypes, fmt, logs, rresult, sexplib
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "yaml"; pname = "yaml";
version = "2.0.1"; version = "2.1.0";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/avsm/ocaml-yaml/releases/download/v${version}/yaml-v${version}.tbz"; url = "https://github.com/avsm/ocaml-yaml/releases/download/v${version}/yaml-v${version}.tbz";
sha256 = "1r8jj572h416g2zliwmxj2j9hkv73nxnpfb9gmbj9gixg24lskx0"; sha256 = "03g8vsh5jgi1cm5q78v15slgnzifp91fp7n4v1i7pa8yk0bkh585";
}; };
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ bos ctypes fmt logs ppx_sexp_conv rresult sexplib ]; propagatedBuildInputs = [ bos ctypes fmt logs ppx_sexp_conv rresult sexplib ];
meta = { meta = {