ocamlPackages.hex: 1.3.0 → 1.4.0

This commit is contained in:
Vincent Laporte 2020-10-28 06:31:05 +01:00 committed by Vincent Laporte
parent 6f8621dea6
commit 39dbc77b99

View file

@ -1,17 +1,19 @@
{ stdenv, fetchurl, buildDunePackage, cstruct }:
{ stdenv, fetchurl, buildDunePackage, bigarray-compat, cstruct }:
buildDunePackage rec {
pname = "hex";
version = "1.3.0";
version = "1.4.0";
useDune2 = true;
minimumOCamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-v${version}.tbz";
sha256 = "193567pn58df3b824vmfanncdfgf9cxzl7q3rq39zl9szvzhvkja";
sha256 = "07b9y0lmnflsslkrm6xilkj40n8sf2hjqkyqghnk7sw5l0plkqsp";
};
propagatedBuildInputs = [ cstruct ];
propagatedBuildInputs = [ bigarray-compat cstruct ];
doCheck = true;
meta = {