2020-11-15 13:44:38 +00:00
|
|
|
{ lib, ocaml, fetchurl, buildDunePackage
|
2022-03-05 16:20:37 +00:00
|
|
|
, pkg-config, which
|
2022-07-14 12:49:19 +00:00
|
|
|
, eqaf
|
2020-11-15 13:44:38 +00:00
|
|
|
, alcotest, astring, bos, findlib, fpath
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "digestif";
|
2022-07-14 12:49:19 +00:00
|
|
|
version = "1.1.2";
|
2020-11-15 13:44:38 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-07-14 12:49:19 +00:00
|
|
|
url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-${version}.tbz";
|
|
|
|
sha256 = "sha256-edNM5ROxFIV+OAqr328UcyGPGwXdflHQOJB3ntAbRmY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [ findlib which ];
|
|
|
|
buildInputs = [ ocaml ];
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
propagatedBuildInputs = [ eqaf ];
|
2022-03-05 16:20:37 +00:00
|
|
|
|
2020-11-15 13:44:38 +00:00
|
|
|
checkInputs = [ alcotest astring bos fpath ];
|
2022-07-14 12:49:19 +00:00
|
|
|
doCheck = true;
|
2020-11-15 13:44:38 +00:00
|
|
|
|
|
|
|
postCheck = ''
|
|
|
|
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/ test/test_runes.ml
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Simple hash algorithms in OCaml";
|
|
|
|
homepage = "https://github.com/mirage/digestif";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
};
|
|
|
|
}
|