aboutsummaryrefslogtreecommitdiffstats
path: root/default.nix
blob: 1a1d32b71c1493bc6be7bd25f123a41b9a120321 (plain)
1
2
3
4
5
6
7
8
9
10
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "CoqUp";
  src = ./.;

  buildInputs = [ coq_8_10 ocamlPackages.menhir dune ];

  buildPhase = "make";
}