ocamlPackages.mustache: init at 3.1.0
mustache.js logic-less templates in OCaml
This commit is contained in:
parent
36626150c2
commit
07e3aab009
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib, buildDunePackage, fetchFromGitHub, ezjsonm, menhir, ounit }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "mustache";
|
||||||
|
version = "3.1.0";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rgrinberg";
|
||||||
|
repo = "ocaml-mustache";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "19v8rk8d8lkfm2rmhdawfgadji6wa267ir5dprh4w9l1sfj8a1py";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ezjsonm ];
|
||||||
|
propagatedBuildInputs = [ menhir ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
checkInputs = [ ounit ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Mustache logic-less templates in OCaml";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
};
|
||||||
|
}
|
|
@ -569,6 +569,8 @@ let
|
||||||
|
|
||||||
mtime = callPackage ../development/ocaml-modules/mtime { };
|
mtime = callPackage ../development/ocaml-modules/mtime { };
|
||||||
|
|
||||||
|
mustache = callPackage ../development/ocaml-modules/mustache { };
|
||||||
|
|
||||||
nocrypto = callPackage ../development/ocaml-modules/nocrypto { };
|
nocrypto = callPackage ../development/ocaml-modules/nocrypto { };
|
||||||
|
|
||||||
notty = callPackage ../development/ocaml-modules/notty { };
|
notty = callPackage ../development/ocaml-modules/notty { };
|
||||||
|
|
Loading…
Reference in New Issue