aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/nix/unicoq.nix
blob: 093c262cde2a34c83938c05ffa5bc042ae0e8c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, coq }:

stdenv.mkDerivation {
  name = "coq${coq.coq-version}-unicoq-0.0-git";
  src = fetchTarball https://github.com/unicoq/unicoq/archive/master.tar.gz;

  buildInputs = [ coq ] ++ (with coq.ocamlPackages; [ ocaml findlib camlp5 num ]);

  configurePhase = "coq_makefile -f Make -o Makefile";
  installFlags = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ];
}