ocamlPackages.containers: 2.6.1 → 2.7

This commit is contained in:
Vincent Laporte 2019-11-29 17:21:41 +00:00 committed by Vincent Laporte
parent 7455a18bd9
commit 335d97fb34

View File

@ -4,14 +4,14 @@
}:
buildDunePackage rec {
version = "2.6.1";
version = "2.7";
pname = "containers";
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-containers";
rev = version;
sha256 = "02iq01pq6047hab5s8zpprwr21cygvzfcfj2lpsyj823f28crhmv";
rev = "v${version}";
sha256 = "1nsxfgn1g1vpqihb9gd6gsab0bcm70nf9z84cp441c8wsc57hi6a";
};
buildInputs = [ iter ];
@ -20,7 +20,7 @@ buildDunePackage rec {
propagatedBuildInputs = [ result uchar ];
doCheck = !lib.versionAtLeast ocaml.version "4.08";
doCheck = true;
meta = {
homepage = https://github.com/c-cube/ocaml-containers;