summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-03-04 07:29:28 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-03-04 09:29:10 +0100
commit014a30da93e370b785e4283630a43c3d12e48ee5 (patch)
tree2fec3cd7f7e317edff5db82071f31e47e14a03be /pkgs/development/ocaml-modules
parentb219052bf1e8c78b449f7ec0edc0303f55708293 (diff)
downloadnixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar.gz
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar.bz2
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar.lz
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar.xz
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.tar.zst
nixlib-014a30da93e370b785e4283630a43c3d12e48ee5.zip
why3: 0.86.2 -> 0.86.3
And merge with ocamlPackages.why3
(the OCaml library would not work correctly if packaged separately).
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/why3/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/development/ocaml-modules/why3/default.nix b/pkgs/development/ocaml-modules/why3/default.nix
deleted file mode 100644
index 3ce0f8bdfac3..000000000000
--- a/pkgs/development/ocaml-modules/why3/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, ocaml, findlib, zarith, menhir, why3 }:
-
-let ocaml-version = stdenv.lib.getVersion ocaml; in
-
-assert stdenv.lib.versionAtLeast ocaml-version "4.01";
-
-stdenv.mkDerivation {
-  name = "ocaml-${why3.name}";
-
-  inherit (why3) src;
-
-  buildInputs = [ ocaml findlib zarith menhir ];
-
-  installTargets = "install-lib";
-
-  meta = {
-    inherit (why3.meta) license homepage;
-    platforms = ocaml.meta.platforms;
-    maintainers = with stdenv.lib.maintainers; [ vbgl ];
-  };
-}