about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocp-indent
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/ocaml/ocp-indent')
-rw-r--r--pkgs/development/tools/ocaml/ocp-indent/1.5.2.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/tools/ocaml/ocp-indent/1.5.2.nix b/pkgs/development/tools/ocaml/ocp-indent/1.5.2.nix
deleted file mode 100644
index 693ad70402f6..000000000000
--- a/pkgs/development/tools/ocaml/ocp-indent/1.5.2.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchzip, ocaml, findlib, ocp-build, cmdliner }:
-
-let inherit (stdenv.lib) getVersion versionAtLeast; in
-
-assert versionAtLeast (getVersion ocaml) "3.12.1";
-assert versionAtLeast (getVersion ocp-build) "1.99.6-beta";
-assert versionAtLeast "0.9.8" (getVersion cmdliner);
-
-stdenv.mkDerivation {
-
-  name = "ocp-indent-1.5.2";
-
-  src = fetchzip {
-    url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz";
-    sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz";
-  };
-
-  nativeBuildInputs = [ ocp-build ];
-
-  buildInputs = [ ocaml findlib cmdliner ];
-
-  createFindlibDestdir = true;
-
-  preConfigure = "patchShebangs ./install.sh";
-
-  postInstall = ''
-    mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/}
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = http://typerex.ocamlpro.com/ocp-indent.html;
-    description = "A customizable tool to indent OCaml code";
-    license = licenses.gpl3;
-    platforms = ocaml.meta.platforms or [];
-    maintainers = [ maintainers.jirkamarsik ];
-  };
-}