summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-07-20 19:36:50 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-07-20 19:36:50 +0200
commite69dfc252a35753ce96aecfcfbf5281eb14d5eec (patch)
tree341392abb5a702f57c2365994375f636d0a920c9 /pkgs/applications/science
parent3e8a565a04cef3a40dc7b1c29e464a1fc6e00232 (diff)
downloadnixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar.gz
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar.bz2
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar.lz
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar.xz
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.tar.zst
nixlib-e69dfc252a35753ce96aecfcfbf5281eb14d5eec.zip
Revert "coq2html: New expression"
This reverts commit 31437ccf7a1ee6cf1b7ead988f3bd38647b1ff02.
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/logic/coq2html/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/applications/science/logic/coq2html/default.nix b/pkgs/applications/science/logic/coq2html/default.nix
deleted file mode 100644
index 9687ac66ead1..000000000000
--- a/pkgs/applications/science/logic/coq2html/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, lib, make, fetchgit, ocaml }:
-
-let 
-  version = "20170720";
-in
-
-stdenv.mkDerivation {
-  name = "coq2html-${version}";
-
-  src = fetchgit {
-    url = "https://github.com/xavierleroy/coq2html";
-    rev = "e2b94093c6b9a877717f181765e30577de22439e";
-    sha256 = "1x466j0pyjggyz0870pdllv9f5vpnfrgkd0w7ajvm9rkwyp3f610";
-  };
-
-  buildInputs = [ make ocaml ];
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp coq2html $out/bin
-  '';
-
-  meta = with stdenv.lib; {
-    description = "coq2html is an HTML documentation generator for Coq source files";
-    longDescription = ''
-      coq2html is an HTML documentation generator for Coq source files. It is
-      an alternative to the standard coqdoc documentation generator
-      distributed along with Coq. The major feature of coq2html is its ability
-      to fold proof scripts: in the generated HTML, proof scripts are
-      initially hidden, but can be revealed one by one by clicking on the
-      "Proof" keyword.
-    '';
-    homepage = https://github.com/xavierleroy/coq2html;
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ jwiegley ];
-    platforms = platforms.unix;
-  };
-}