ocamlPackages.toml: 5.0.0 → 6.0.0

This commit is contained in:
Vincent Laporte 2021-01-18 08:21:48 +01:00 committed by Vincent Laporte
parent dd3238c002
commit 8e08bb0392

View file

@ -4,12 +4,15 @@
buildDunePackage rec {
pname = "toml";
version = "5.0.0";
version = "6.0.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "ocaml-toml";
repo = "to.ml";
rev = "v${version}";
sha256 = "1505kwcwklcfaxw8wckajm8kc6yrlikmxyhi8f8cpvhlw9ys90nj";
rev = version;
sha256 = "08ywzqckllvwawl1wpgg7qzvx6jhq7d6vysa0d5hj7qdwq213ggm";
};
buildInputs = [ menhir ];