1 { lib, stdenv, fetchurl, cmake, pcre, zlib, python2, openssl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/cppcms/${pname}-${version}.tar.bz2";
9 sha256 = "0lmcdjzicmzhnr8pa0q3f5lgapz2cnh9w0dr56i4kj890iqwgzhh";
12 nativeBuildInputs = [ cmake ];
13 buildInputs = [ pcre zlib python2 openssl ];
18 "--no-warn-unused-cli"
22 homepage = "http://cppcms.com";
23 description = "High Performance C++ Web Framework";
24 platforms = platforms.linux ;
25 license = licenses.lgpl3;
26 maintainers = [ maintainers.juliendehos ];