nixpkgs/pkgs/by-name/mu/mustache-spec/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

43 lines
1.1 KiB
Nix

{ 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;
};
}