about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/documentation/mustache-spec/default.nix
blob: b2a6eaa1535286b5b969d31ca18b02812ab55651 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv, lib, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "mustache-spec";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner = "mustache";
    repo = "mustache";
    rev = "v${version}";
    sha256 = "03xrfyjzm5ss6zkdlpl9ypwzcglspcdcnr3f94vj1rjfqm2rxcjw";
  };

  configurePhase = "";
  dontBuild = true;

  installPhase = ''
    mkdir -p $out/{man/man5,doc/html}
    cp man/mustache.5 $out/man/man5
    cp man/mustache.5.html $out/doc/html
  '';

  meta = rec {
    description = "Logic-less templates, specification package";
    longDescription = ''
      Inspired by ctemplate and et, Mustache is a framework-agnostic way to
      render logic-free views.

      Provides the specification as man page and html docs.

      As ctemplates says, "It emphasizes separating logic from presentation: it
      is impossible to embed application logic in this template language."

      For a list of implementations and tips, see ${homepage}.
    '';

    homepage = http://mustache.github.io/;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ Profpatsch ];
    platforms = lib.platforms.all;
  };
}