2016-08-24 22:23:45 +01:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
2015-09-21 04:56:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ctpp2";
|
2015-09-21 04:56:10 +01:00
|
|
|
version = "2.8.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://ctpp.havoc.ru/download/${pname}-${version}.tar.gz";
|
2015-09-21 04:56:10 +01:00
|
|
|
sha256 = "1z22zfw9lb86z4hcan9hlvji49c9b7vznh7gjm95gnvsh43zsgx8";
|
|
|
|
};
|
|
|
|
|
2016-08-24 22:23:45 +01:00
|
|
|
buildInputs = [ cmake ];
|
2015-09-21 04:56:10 +01: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-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2018-09-30 10:29:36 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-09-21 04:56:10 +01:00
|
|
|
description = "A high performance templating engine";
|
|
|
|
homepage = http://ctpp.havoc.ru;
|
2018-09-30 10:29:36 +01:00
|
|
|
maintainers = [ maintainers.robbinch ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
2015-09-21 04:56:10 +01:00
|
|
|
};
|
|
|
|
}
|