2016-08-24 21:23:45 +00:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
2015-09-21 03:56:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ctpp2";
|
|
|
|
version = "2.8.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ctpp.havoc.ru/download/ctpp2-${version}.tar.gz";
|
|
|
|
sha256 = "1z22zfw9lb86z4hcan9hlvji49c9b7vznh7gjm95gnvsh43zsgx8";
|
|
|
|
};
|
|
|
|
|
2016-08-24 21:23:45 +00:00
|
|
|
buildInputs = [ cmake ];
|
2015-09-21 03:56:10 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
# include <unistd.h> to fix undefined getcwd
|
|
|
|
sed -ie 's/<stdlib.h>/<stdlib.h>\n#include <unistd.h>/' src/CTPP2FileSourceLoader.cpp
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A high performance templating engine";
|
|
|
|
homepage = http://ctpp.havoc.ru;
|
2017-04-29 04:24:34 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ robbinch ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2015-09-21 03:56:10 +00:00
|
|
|
};
|
|
|
|
}
|