214482c79a
I don't know what this is, but it wasn't building before and now it is. svn path=/nixpkgs/trunk/; revision=33338
23 lines
682 B
Nix
23 lines
682 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
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";
|
|
};
|
|
|
|
pname = "ctemplate";
|
|
version = "2.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://ctemplate.googlecode.com/files/${name}.tar.gz";
|
|
sha256 = "0scdqqbp8fy9jiak60dj1051gbyb8xmlm4rdz4h1myxifjagwbfa";
|
|
};
|
|
}
|