fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 meta = {
5 description = "A simple but powerful template language for C++";
6 longDescription = ''
7 CTemplate is a simple but powerful template language for C++. It
8 emphasizes separating logic from presentation: it is impossible to
9 embed application logic in this template language. '';
10 homepage = http://code.google.com/p/google-ctemplate/;
11 license = "bsd";
12 };
13
14 pname = "ctemplate";
15 version = "2.2";
16 name = "${pname}-${version}";
17
18 src = fetchurl {
19 url = "http://ctemplate.googlecode.com/files/${name}.tar.gz";
20 sha256 = "0vv8gvyndppm9m5s1i5k0jvwcz41l1vfgg04r7nssdpzyz0cpwq4";
21 };
22}