coq-8.3: fix (needs make 3)

+3 -2
+2 -2
pkgs/applications/science/logic/coq/8.3.nix
··· 1 1 # - coqide compilation can be disabled by setting lablgtk to null; 2 2 3 - {stdenv, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null}: 3 + { stdenv, make, fetchurl, ocaml, findlib, camlp5, ncurses, lablgtk ? null }: 4 4 5 5 let 6 6 version = "8.3pl4"; ··· 21 21 sha256 = "17d3lmchmqir1rawnr52g78srg4wkd7clzpzfsivxc4y1zp6rwkr"; 22 22 }; 23 23 24 - buildInputs = [ ocaml findlib camlp5 ncurses lablgtk ]; 24 + buildInputs = [ make ocaml findlib camlp5 ncurses lablgtk ]; 25 25 26 26 prefixKey = "-prefix "; 27 27
+1
pkgs/top-level/all-packages.nix
··· 14095 14095 }; 14096 14096 14097 14097 coq_8_3 = callPackage ../applications/science/logic/coq/8.3.nix { 14098 + make = gnumake3; 14098 14099 inherit (ocamlPackages_3_12_1) ocaml findlib; 14099 14100 camlp5 = ocamlPackages_3_12_1.camlp5_transitional; 14100 14101 lablgtk = ocamlPackages_3_12_1.lablgtk_2_14;