mustache-hpp: init at 4.1

This commit is contained in:
ajs124 2021-03-28 00:29:16 +01:00
parent 8e304bd0e0
commit 9478a316c2
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "mustache";
version = "4.1";
src = fetchFromGitHub {
owner = "kainjow";
repo = "Mustache";
rev = "v${version}";
sha256 = "0r9rbk6v1wpld2ismfsk2lkhbyv3dkf0p03hkjivbj05qkfhvlbb";
};
nativeBuildInputs = [ cmake ];
installPhase = ''
mkdir -p $out/include
cp ../mustache.hpp $out/include
'';
meta = with lib; {
description = "Mustache text templates for modern C++";
homepage = "https://github.com/kainjow/Mustache";
license = licenses.boost;
};
}

View file

@ -21124,6 +21124,8 @@ in
mustache-go = callPackage ../development/tools/mustache-go { };
mustache-hpp = callPackage ../development/libraries/mustache-hpp { };
myrica = callPackage ../data/fonts/myrica { };
nafees = callPackage ../data/fonts/nafees { };