aboutsummaryrefslogtreecommitdiffstats
path: root/lib/nix/dune
blob: 3954c8a3baf3d6e36d6ffbbfee5464f9e033850b (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(menhir
 (modules parser)
 (flags "--dump" "--strict" "--external-tokens" "Tokens")
 (infer true))

(ocamllex
 (modules lexer))

(library
 (name nix)
 (preprocess
  (pps ppx_sexp_conv))
 (instrumentation
  (backend bisect_ppx))
 (libraries core core_unix core_unix.filename_unix pprint ppx_sexp_conv str))