summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bitstring/ppx.nix
blob: 9eb4c74f574c5e16f354813f6553e6fd55deb691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildDunePackage, ocaml
, bitstring, ppxlib
, ounit
}:

if lib.versionOlder ppxlib.version "0.18.0"
then throw "ppx_bitstring is not available with ppxlib-${ppxlib.version}"
else

buildDunePackage rec {
  pname = "ppx_bitstring";
  inherit (bitstring) version useDune2 src;

  buildInputs = [ bitstring ppxlib ];

  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [ ounit ];

  meta = bitstring.meta // {
    description = "Bitstrings and bitstring matching for OCaml - PPX extension";
  };
}