1{ lib, stdenv, fetchurl, cmake, pcre, zlib, python2, openssl }:
2
3stdenv.mkDerivation rec {
4 pname = "cppcms";
5 version = "1.2.1";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/cppcms/${pname}-${version}.tar.bz2";
9 sha256 = "0lmcdjzicmzhnr8pa0q3f5lgapz2cnh9w0dr56i4kj890iqwgzhh";
10 };
11
12 nativeBuildInputs = [ cmake ];
13 buildInputs = [ pcre zlib python2 openssl ];
14
15 strictDeps = true;
16
17 cmakeFlags = [
18 "--no-warn-unused-cli"
19 ];
20
21 meta = with lib; {
22 homepage = "http://cppcms.com";
23 description = "High Performance C++ Web Framework";
24 platforms = platforms.linux ;
25 license = licenses.lgpl3;
26 maintainers = [ maintainers.juliendehos ];
27 };
28}
29