ocamlPackages.digestif: drop postCheck

This commit is contained in:
Vincent Laporte
2026-04-27 22:00:59 +02:00
parent 3e4efae076
commit 340a962145
@@ -5,19 +5,13 @@
buildDunePackage,
eqaf,
alcotest,
astring,
bos,
crowbar,
findlib,
fpath,
}:
buildDunePackage (finalAttrs: {
pname = "digestif";
version = "1.3.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/mirage/digestif/releases/download/v${finalAttrs.version}/digestif-${finalAttrs.version}.tbz";
hash = "sha256-mmzcszJTnIf0cj/DvXNiayZ1p7EWH98P7TCRhs4Y9Cc=";
@@ -27,17 +21,10 @@ buildDunePackage (finalAttrs: {
checkInputs = [
alcotest
astring
bos
crowbar
fpath
];
doCheck = true;
postCheck = ''
ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib/ test/test_runes.ml
'';
meta = {
description = "Simple hash algorithms in OCaml";
homepage = "https://github.com/mirage/digestif";