nixpkgs/pkgs/development/ocaml-modules/dolmen/default.nix
Vincent Laporte 8e2b735ee0
alt-ergo: 2.5.4 → 2.6.0
ocamlPackages.dolmen: 0.9 → 0.10
2024-09-26 07:32:38 +02:00

33 lines
735 B
Nix

{ lib, fetchurl, buildDunePackage
, menhir, menhirLib
, fmt
, hmap
, qcheck
}:
buildDunePackage rec {
pname = "dolmen";
version = "0.10";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/Gbury/dolmen/releases/download/v${version}/dolmen-${version}.tbz";
hash = "sha256-xchfd+OSTzeOjYLxZu7+QTG04EG/nN7KRnQQ8zxx+mE=";
};
nativeBuildInputs = [ menhir ];
propagatedBuildInputs = [ menhirLib fmt hmap ];
doCheck = true;
checkInputs = [ qcheck ];
meta = {
description = "OCaml library providing clean and flexible parsers for input languages";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/Gbury/dolmen";
};
}