ocamlPackages.hex: 1.3.0 → 1.4.0
This commit is contained in:
parent
6f8621dea6
commit
39dbc77b99
1 changed files with 6 additions and 4 deletions
|
@ -1,17 +1,19 @@
|
||||||
{ stdenv, fetchurl, buildDunePackage, cstruct }:
|
{ stdenv, fetchurl, buildDunePackage, bigarray-compat, cstruct }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "hex";
|
pname = "hex";
|
||||||
version = "1.3.0";
|
version = "1.4.0";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
minimumOCamlVersion = "4.02";
|
minimumOCamlVersion = "4.02";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-v${version}.tbz";
|
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;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue