2016-08-24 14:23:45 -07:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
2015-09-20 20:56:10 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ctpp2";
|
2015-09-20 20:56:10 -07:00
|
|
|
version = "2.8.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://ctpp.havoc.ru/download/${pname}-${version}.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
|
|
|
|
|
2018-09-30 02:29:36 -07:00
|
|
|
meta = with stdenv.lib; {
|
2015-09-20 20:56:10 -07:00
|
|
|
description = "A high performance templating engine";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://ctpp.havoc.ru";
|
2018-09-30 02:29:36 -07:00
|
|
|
maintainers = [ maintainers.robbinch ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
2015-09-20 20:56:10 -07:00
|
|
|
};
|
|
|
|
}
|