Adds ocaml-ojquery-0.1
jQuery Binding for Eliom Homepage: http://ocsigen.org/ojquery/
This commit is contained in:
parent
837b2abb2b
commit
a1822087e6
24
pkgs/development/ocaml-modules/ojquery/default.nix
Normal file
24
pkgs/development/ocaml-modules/ojquery/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchgit, ocaml, findlib, js_of_ocaml, camlp4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.1";
|
||||
name = "ocaml-ojquery-${version}";
|
||||
src = fetchgit {
|
||||
url = https://github.com/ocsigen/ojquery.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "1x3cidxxjyw0g7afvczdy6chw3nxb0dcz2psgxchqgv34dcwf0l0";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ];
|
||||
propagatedBuildInputs = [ js_of_ocaml camlp4 ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
description = "jQuery Binding for Eliom";
|
||||
homepage = http://ocsigen.org/ojquery/;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = ocaml.meta.platforms;
|
||||
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
@ -3771,6 +3771,8 @@ let
|
||||
|
||||
ocsigen_server = callPackage ../development/ocaml-modules/ocsigen-server { };
|
||||
|
||||
ojquery = callPackage ../development/ocaml-modules/ojquery { };
|
||||
|
||||
otfm = callPackage ../development/ocaml-modules/otfm { };
|
||||
|
||||
ounit = callPackage ../development/ocaml-modules/ounit { };
|
||||
|
Loading…
Reference in New Issue
Block a user