about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/ctpp2
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/ctpp2')
-rw-r--r--nixpkgs/pkgs/development/libraries/ctpp2/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/ctpp2/default.nix b/nixpkgs/pkgs/development/libraries/ctpp2/default.nix
new file mode 100644
index 000000000000..5aac0850a74d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/ctpp2/default.nix
@@ -0,0 +1,33 @@
+{ lib, stdenv, fetchurl, cmake }:
+
+stdenv.mkDerivation rec {
+  pname = "ctpp2";
+  version = "2.8.3";
+
+  src = fetchurl {
+    url = "https://ctpp.havoc.ru/download/${pname}-${version}.tar.gz";
+    sha256 = "1z22zfw9lb86z4hcan9hlvji49c9b7vznh7gjm95gnvsh43zsgx8";
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  patchPhase = ''
+    # include <unistd.h> to fix undefined getcwd
+    sed -ie 's/<stdlib.h>/<stdlib.h>\n#include <unistd.h>/' src/CTPP2FileSourceLoader.cpp
+  '';
+
+  cmakeFlags = [
+    # RPATH of binary /nix/store/.../bin/ctpp2json contains a forbidden reference to /build/
+    "-DCMAKE_SKIP_BUILD_RPATH=ON"
+  ];
+
+  doCheck = false; # fails
+
+  meta = with lib; {
+    description = "A high performance templating engine";
+    homepage = "https://ctpp.havoc.ru/";
+    maintainers = [ maintainers.robbinch ];
+    platforms = platforms.linux;
+    license = licenses.bsd2;
+  };
+}