nixpkgs/pkgs/development/libraries/ctpp2/default.nix

29 lines
715 B
Nix
Raw Normal View History

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