29 lines
670 B
Nix
29 lines
670 B
Nix
{ stdenv, fetchurl, cmake, pcre, zlib, python, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cppcms";
|
|
version = "1.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cppcms/${pname}-${version}.tar.bz2";
|
|
sha256 = "0lmcdjzicmzhnr8pa0q3f5lgapz2cnh9w0dr56i4kj890iqwgzhh";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ cmake pcre zlib python openssl ];
|
|
|
|
cmakeFlags = [
|
|
"--no-warn-unused-cli"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://cppcms.com";
|
|
description = "High Performance C++ Web Framework";
|
|
platforms = platforms.linux ;
|
|
license = licenses.lgpl3;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|
|
|