1 { lib, stdenv, fetchFromGitHub, python3, autoconf, automake, libtool }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "ctemplate-${version}";
11 sha256 = "1x0p5yym6vvcx70pm8ihnbxxrl2wnblfp72ih5vjyg8mzkc8cxrr";
14 nativeBuildInputs = [ python3 autoconf automake libtool ];
25 description = "A simple but powerful template language for C++";
27 CTemplate is a simple but powerful template language for C++. It
28 emphasizes separating logic from presentation: it is impossible to
29 embed application logic in this template language.
31 homepage = "https://github.com/OlafvdSpek/ctemplate";
32 license = lib.licenses.bsd3;