nixpkgs/pkgs/development/ocaml-modules/digestif/default.nix

33 lines
936 B
Nix
Raw Normal View History

{ lib, fetchurl, fetchpatch, buildDunePackage
2019-10-07 06:48:15 +00:00
, bigarray-compat, eqaf, stdlib-shims
, alcotest
}:
2019-10-07 06:48:15 +00:00
buildDunePackage rec {
pname = "digestif";
version = "0.8.0";
src = fetchurl {
2019-10-07 06:48:15 +00:00
url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-v${version}.tbz";
sha256 = "09g4zngqiw97cljv8ds4m063wcxz3y7c7vzaprsbpjzi0ja5jdcy";
};
# Fix tests with alcotest ≥ 1
patches = [ (fetchpatch {
url = "https://github.com/mirage/digestif/commit/b65d996c692d75da0a81323253429e07d14b72b6.patch";
sha256 = "0sf7qglcp19dhs65pwrrc7d9v57icf18jsrhpmvwskx8b4dchfiv";
})];
2019-10-07 06:48:15 +00:00
buildInputs = lib.optional doCheck alcotest;
propagatedBuildInputs = [ bigarray-compat eqaf stdlib-shims ];
2019-10-07 06:48:15 +00:00
doCheck = true;
meta = {
description = "Simple hash algorithms in OCaml";
homepage = "https://github.com/mirage/digestif";
2019-10-07 06:48:15 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}