Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 670 B view raw
1{ stdenv, fetchurl, cmake, pcre, zlib, python, 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 enableParallelBuilding = true; 13 14 buildInputs = [ cmake pcre zlib python openssl ]; 15 16 cmakeFlags = [ 17 "--no-warn-unused-cli" 18 ]; 19 20 meta = with stdenv.lib; { 21 homepage = "http://cppcms.com"; 22 description = "High Performance C++ Web Framework"; 23 platforms = platforms.linux ; 24 license = licenses.lgpl3; 25 maintainers = [ maintainers.juliendehos ]; 26 }; 27} 28