about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 06:24:37 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 20:14:57 +0000
commitc647ca8180326f6c8687a6b1d7fde6bda8657184 (patch)
treef79a76ed3c70da205eb892f9696efe1ae350bf46 /pkgs
parented1bbae4db882ed42e349dd7a8a84de535493108 (diff)
downloadnixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar.gz
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar.bz2
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar.lz
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar.xz
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.tar.zst
nixlib-c647ca8180326f6c8687a6b1d7fde6bda8657184.zip
ocamlPackages.cmdliner: remove at 0.9.8
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/cmdliner/0.9.nix34
-rw-r--r--pkgs/top-level/ocaml-packages.nix2
2 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/ocaml-modules/cmdliner/0.9.nix b/pkgs/development/ocaml-modules/cmdliner/0.9.nix
deleted file mode 100644
index 345d56d21707..000000000000
--- a/pkgs/development/ocaml-modules/cmdliner/0.9.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opaline }:
-
-let
-  pname = "cmdliner";
-in
-
-assert stdenv.lib.versionAtLeast ocaml.version "3.12";
-
-stdenv.mkDerivation rec {
-
-  name = "ocaml-${pname}-${version}";
-  version = "0.9.8";
-
-  src = fetchurl {
-    url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz";
-    sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx";
-  };
-
-  unpackCmd = "tar xjf $src";
-  nativeBuildInputs = [ ocamlbuild opaline ];
-  buildInputs = [ ocaml findlib ];
-
-  configurePhase = "ocaml pkg/git.ml";
-  buildPhase     = "ocaml pkg/build.ml native=true native-dynlink=true";
-  installPhase   = "opaline -libdir $OCAMLFIND_DESTDIR";
-
-  meta = with stdenv.lib; {
-    homepage = http://erratique.ch/software/cmdliner;
-    description = "An OCaml module for the declarative definition of command line interfaces";
-    license = licenses.bsd3;
-    platforms = ocaml.meta.platforms or [];
-    maintainers = [ maintainers.vbgl ];
-  };
-}
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index 88aa7df63727..87e1cf907f52 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -139,8 +139,6 @@ let
 
     cil = callPackage ../development/ocaml-modules/cil { };
 
-    cmdliner_0_9 = callPackage ../development/ocaml-modules/cmdliner/0.9.nix { };
-
     cmdliner = callPackage ../development/ocaml-modules/cmdliner { };
 
     cohttp_p4 = callPackage ../development/ocaml-modules/cohttp/0.19.3.nix {