ocamlPackages.ojquery: remove at 0.1

This commit is contained in:
Vincent Laporte 2019-04-19 14:46:09 +00:00 committed by Vincent Laporte
parent e666cc4e7e
commit 61b53f4071
2 changed files with 0 additions and 32 deletions

View File

@ -1,28 +0,0 @@
{ stdenv, fetchgit, ocaml, findlib, ocamlbuild, js_of_ocaml, js_of_ocaml-camlp4, camlp4, ocaml_lwt, react }:
if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "ojquery is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "0.1";
name = "ocaml-ojquery-${version}";
src = fetchgit {
url = https://github.com/ocsigen/ojquery.git;
rev = "refs/tags/${version}";
sha256 = "1n01bsk4car40p94fk1ssvww0inqapwwhdylmrb7vv40drsdldp1";
};
buildInputs = [ ocaml findlib ocamlbuild js_of_ocaml-camlp4 camlp4 ];
propagatedBuildInputs = [ js_of_ocaml ocaml_lwt react ];
createFindlibDestdir = true;
meta = {
description = "jQuery Binding for Eliom";
homepage = http://ocsigen.org/ojquery/;
license = stdenv.lib.licenses.lgpl3;
platforms = ocaml.meta.platforms or [];
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}

View File

@ -560,10 +560,6 @@ let
odoc = callPackage ../development/ocaml-modules/odoc { };
ojquery = callPackage ../development/ocaml-modules/ojquery {
ocaml_lwt = lwt3;
};
omd = callPackage ../development/ocaml-modules/omd { };
opam-file-format = callPackage ../development/ocaml-modules/opam-file-format { };