about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-01-18 08:21:48 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-19 08:25:42 +0100
commit8e08bb03924907d2a7dfcf8105045c3172601703 (patch)
treed065c5b0cb12bee818bc4c6fd749cf6f7a5a07e0
parentdd3238c002f51c2ab8fc325bf4fa330a29c64ed6 (diff)
downloadnixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar.gz
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar.bz2
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar.lz
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar.xz
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.tar.zst
nixlib-8e08bb03924907d2a7dfcf8105045c3172601703.zip
ocamlPackages.toml: 5.0.0 → 6.0.0
-rw-r--r--pkgs/development/ocaml-modules/toml/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/toml/default.nix b/pkgs/development/ocaml-modules/toml/default.nix
index 0e25d9bc6b65..6980a148e105 100644
--- a/pkgs/development/ocaml-modules/toml/default.nix
+++ b/pkgs/development/ocaml-modules/toml/default.nix
@@ -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 ];