mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
9b7b2ce8eb
This reverts commit 512fbb280f
.
See #5368
30 lines
741 B
Nix
30 lines
741 B
Nix
{ stdenv, fetchsvn, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ctemplate-${version}";
|
|
|
|
version = "2.3";
|
|
|
|
src = fetchsvn {
|
|
url = "http://ctemplate.googlecode.com/svn/tags/${name}";
|
|
sha256 = "1kvh82mhazf4qz7blnv0rcax7vi524dmz6v6rp89z2h3qjilbvc7";
|
|
};
|
|
|
|
buildInputs = [ python ];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
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 = http://code.google.com/p/google-ctemplate/;
|
|
license = "bsd";
|
|
};
|
|
}
|