nixpkgs/pkgs/development/ocaml-modules/digestif/default.nix
2023-03-24 13:53:18 +01:00

34 lines
815 B
Nix

{ lib, ocaml, fetchurl, buildDunePackage
, eqaf
, alcotest, astring, bos, findlib, fpath
}:
buildDunePackage rec {
pname = "digestif";
version = "1.1.4";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-${version}.tbz";
hash = "sha256-w3k+cg8NqAVPYobFRcghp/6+iC5/TlSX7ImxWjU1EeE=";
};
propagatedBuildInputs = [ eqaf ];
checkInputs = [ alcotest astring bos 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";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}