Skip to content

Commit

Permalink
ocamlPackages.hex: 1.3.0 → 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Oct 31, 2020
1 parent 6f8621d commit 39dbc77
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/development/ocaml-modules/hex/default.nix
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down

0 comments on commit 39dbc77

Please sign in to comment.