blob: 611e2fcca588fb725be86148aab8340f0d9a9291 (
plain)
1
2
3
4
5
6
7
|
{ autoconf, ocamlPackages }:
{
buildInputs = [ autoconf ] ++ (with ocamlPackages; [ ocaml findlib camlp5 ocamlgraph ]);
configure = "autoconf && ./configure";
make = "make all test-suite";
}
|