nixpkgs/pkgs/development/ocaml-modules/mustache/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
656 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchFromGitHub, ezjsonm, menhir, menhirLib, ounit }:
buildDunePackage rec {
pname = "mustache";
version = "3.1.0";
2020-10-21 07:19:58 +02:00
useDune2 = true;
src = fetchFromGitHub {
owner = "rgrinberg";
repo = "ocaml-mustache";
rev = "v${version}";
sha256 = "19v8rk8d8lkfm2rmhdawfgadji6wa267ir5dprh4w9l1sfj8a1py";
};
buildInputs = [ ezjsonm menhir ];
propagatedBuildInputs = [ menhirLib ];
doCheck = true;
checkInputs = [ ounit ];
meta = {
description = "Mustache logic-less templates in OCaml";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}