aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/nix/gappa.nix
blob: 8560cc072bd96e699df8231085e8d80c030e8a87 (plain)
1
2
3
4
5
6
7
8
9
{ autoconf, automake, ocaml, flocq }:

{
  buildInputs = [ autoconf automake ocaml ];
  coqBuildInputs = [ flocq ];
  configure = "autoreconf && ./configure";
  make = "./remake";
  clean = "./remake clean";
}