about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocp-indent
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 06:23:36 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2018-06-26 20:14:57 +0000
commited1bbae4db882ed42e349dd7a8a84de535493108 (patch)
tree851f1d88fc75322a2e077374882cd0e05df11f6e /pkgs/development/tools/ocaml/ocp-indent
parent06158033f24d7467f2361efb11f8c8bc24b87f7d (diff)
downloadnixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar.gz
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar.bz2
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar.lz
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar.xz
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.tar.zst
nixlib-ed1bbae4db882ed42e349dd7a8a84de535493108.zip
ocamlPackages.ocp-indent: remove at 1.5.2
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 ];
-  };
-}