ocamlPackages.io-page: 2.0.1 → 2.3.0

This commit is contained in:
sternenseemann 2020-05-21 00:44:42 +02:00 committed by Vincent Laporte
parent f4852591c1
commit 8852d537b2

View file

@ -1,16 +1,19 @@
{ stdenv, fetchzip, buildDunePackage, configurator, cstruct }:
{ stdenv, fetchurl, buildDunePackage, configurator, cstruct, bigarray-compat, ounit }:
buildDunePackage rec {
pname = "io-page";
version = "2.0.1";
version = "2.3.0";
src = fetchzip {
url = "https://github.com/mirage/${pname}/archive/${version}.tar.gz";
sha256 = "1rw04dwrlx5hah5dkjf7d63iff82j9cifr8ifjis5pdwhgwcff8i";
minimumOCamlVersion = "4.02.3";
src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "1hx27pwf419hrhwaw9cphbnl8akz8yy73hqj49l15g2k7shah1cn";
};
buildInputs = [ configurator ];
propagatedBuildInputs = [ cstruct ];
propagatedBuildInputs = [ cstruct bigarray-compat ];
checkInputs = [ ounit ];
doCheck = true;
meta = {
homepage = "https://github.com/mirage/io-page";