summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/bitstring/ppx.nix
blob: 826e01501fb21be214fe2c438c53512c1ffbc936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  buildDunePackage,
  bitstring,
  ppxlib,
  ounit,
}:

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

  buildInputs = [
    bitstring
    ppxlib
  ];

  doCheck = true;
  checkInputs = [ ounit ];

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