ocamlPackages.containers: 3.4 → 3.6.1

This commit is contained in:
Vincent Laporte 2021-12-20 22:18:39 +01:00 committed by Vincent Laporte
parent 2b8fa4a06f
commit 1660d6df61

View file

@ -1,11 +1,11 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml
, dune-configurator
, seq
, either, seq
, gen, iter, ounit, qcheck, uutf
}:
buildDunePackage rec {
version = "3.4";
version = "3.6.1";
pname = "containers";
useDune2 = true;
@ -14,11 +14,11 @@ buildDunePackage rec {
owner = "c-cube";
repo = "ocaml-containers";
rev = "v${version}";
sha256 = "0ixpy81p6rc3lq71djfndb2sg2hfj20j1jbzzrrmgqsysqdjsgzz";
sha256 = "sha256:1k8xrs3nki8g875sig9f5v6k4vwxrk5gn7ixrlkkys5ksbr4kis7";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ seq ];
propagatedBuildInputs = [ either seq ];
checkInputs = [ gen iter ounit qcheck uutf ];