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