ocamlPackages.containers: 3.0 → 3.0.1

This commit is contained in:
Vincent Laporte 2020-11-15 06:04:44 +01:00 committed by Vincent Laporte
parent 5eb3722b8b
commit e286f0cf3b
2 changed files with 9 additions and 3 deletions

View file

@ -1,12 +1,14 @@
{ buildDunePackage, containers
, dune-configurator
, gen, iter, qcheck
}:
buildDunePackage {
pname = "containers-data";
inherit (containers) src version;
inherit (containers) src version useDune2;
buildInputs = [ dune-configurator ];
doCheck = true;
checkInputs = [ gen iter qcheck ];

View file

@ -1,19 +1,23 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml
, dune-configurator
, seq
, gen, iter, ounit, qcheck, uutf
}:
buildDunePackage rec {
version = "3.0";
version = "3.0.1";
pname = "containers";
useDune2 = true;
src = fetchFromGitHub {
owner = "c-cube";
repo = "ocaml-containers";
rev = "v${version}";
sha256 = "0c75d5csgc68qqbsdz4279nlin111zrjbg4d47k32ska28myvpqn";
sha256 = "1m19cfcwks3xcj16nqldfb49dg0vdc7by1q1j8bpac3z2mjvks0l";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ seq ];
checkInputs = [ gen iter ounit qcheck uutf ];