1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

coq2html: switch to default make

This commit is contained in:
Piotr Bogdan 2018-03-22 15:56:22 +00:00
parent 20738d8b81
commit 5d0eeeee38
2 changed files with 3 additions and 5 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, make, fetchgit, ocaml }:
{ stdenv, fetchgit, ocaml }:
let
version = "20170720";
@ -13,7 +13,7 @@ stdenv.mkDerivation {
sha256 = "1x466j0pyjggyz0870pdllv9f5vpnfrgkd0w7ajvm9rkwyp3f610";
};
buildInputs = [ make ocaml ];
buildInputs = [ ocaml ];
installPhase = ''
mkdir -p $out/bin

View file

@ -21447,9 +21447,7 @@ with pkgs;
coqPackages coq
;
coq2html = callPackage ../applications/science/logic/coq2html {
make = pkgs.gnumake3;
};
coq2html = callPackage ../applications/science/logic/coq2html { };
cryptoverif = callPackage ../applications/science/logic/cryptoverif { };