2020-11-07 16:35:57 +03:00
|
|
|
{ lib, ocaml, fetchurl, buildDunePackage
|
2019-10-07 09:48:15 +03:00
|
|
|
, bigarray-compat, eqaf, stdlib-shims
|
2020-11-07 16:35:57 +03:00
|
|
|
, alcotest, astring, bos, findlib, fpath
|
2019-10-07 09:48:15 +03:00
|
|
|
}:
|
2017-12-05 21:19:25 +03:00
|
|
|
|
2019-10-07 09:48:15 +03:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "digestif";
|
2020-11-07 16:35:57 +03:00
|
|
|
version = "0.9.0";
|
|
|
|
|
|
|
|
useDune2 = true;
|
2017-12-05 21:19:25 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-10-07 09:48:15 +03:00
|
|
|
url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-v${version}.tbz";
|
2020-11-07 16:35:57 +03:00
|
|
|
sha256 = "0vk9prgjp46xs8qizq7szkj6mqjj2ymncs2016bc8zswcdc1a3q4";
|
2017-12-05 21:19:25 +03:00
|
|
|
};
|
|
|
|
|
2019-10-07 09:48:15 +03:00
|
|
|
propagatedBuildInputs = [ bigarray-compat eqaf stdlib-shims ];
|
2017-12-05 21:19:25 +03:00
|
|
|
|
2020-11-07 16:35:57 +03:00
|
|
|
checkInputs = [ alcotest astring bos fpath ];
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
|
|
|
|
|
|
|
postCheck = ''
|
|
|
|
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/ test/test_runes.ml
|
|
|
|
'';
|
2017-12-05 21:19:25 +03:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Simple hash algorithms in OCaml";
|
|
|
|
homepage = "https://github.com/mirage/digestif";
|
2019-10-07 09:48:15 +03:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2017-12-05 21:19:25 +03:00
|
|
|
};
|
|
|
|
}
|