From 340a962145c25d0785ba53305edfd99d23b8f9fe Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 27 Apr 2026 22:00:59 +0200 Subject: [PATCH] ocamlPackages.digestif: drop postCheck --- pkgs/development/ocaml-modules/digestif/default.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pkgs/development/ocaml-modules/digestif/default.nix b/pkgs/development/ocaml-modules/digestif/default.nix index f10a4bb70397..404fa325250d 100644 --- a/pkgs/development/ocaml-modules/digestif/default.nix +++ b/pkgs/development/ocaml-modules/digestif/default.nix @@ -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";