depot/third_party/nixpkgs/pkgs/development/libraries/libctemplate/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

34 lines
889 B
Nix

{ lib, stdenv, fetchFromGitHub, python3, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
pname = "ctemplate";
version = "2.4";
src = fetchFromGitHub {
owner = "OlafvdSpek";
repo = "ctemplate";
rev = "ctemplate-${version}";
sha256 = "1x0p5yym6vvcx70pm8ihnbxxrl2wnblfp72ih5vjyg8mzkc8cxrr";
};
nativeBuildInputs = [ python3 autoconf automake libtool ];
postPatch = ''
patchShebangs .
'';
preConfigure = ''
./autogen.sh
'';
meta = {
description = "A simple but powerful template language for C++";
longDescription = ''
CTemplate is a simple but powerful template language for C++. It
emphasizes separating logic from presentation: it is impossible to
embed application logic in this template language.
'';
homepage = "https://github.com/OlafvdSpek/ctemplate";
license = lib.licenses.bsd3;
};
}