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

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

  buildInputs = [ coq_8_10 ];

  buildPhase = "make";
}