nixpkgs/pkgs/development/libraries/cppcms/default.nix

29 lines
666 B
Nix
Raw Normal View History

2016-08-24 09:36:17 +02:00
{ stdenv, fetchurl, cmake, pcre, zlib, python, openssl }:
stdenv.mkDerivation rec {
2018-05-28 14:59:57 +02:00
name = "cppcms-${version}";
version = "1.2.1";
2016-08-24 09:36:17 +02:00
src = fetchurl {
2018-05-28 14:59:57 +02:00
url = "mirror://sourceforge/cppcms/${name}.tar.bz2";
sha256 = "0lmcdjzicmzhnr8pa0q3f5lgapz2cnh9w0dr56i4kj890iqwgzhh";
2016-08-24 09:36:17 +02:00
};
enableParallelBuilding = true;
buildInputs = [ cmake pcre zlib python openssl ];
cmakeFlags = [
"--no-warn-unused-cli"
];
meta = with stdenv.lib; {
homepage = http://cppcms.com;
2016-08-24 09:36:17 +02:00
description = "High Performance C++ Web Framework";
platforms = platforms.linux ;
license = licenses.lgpl3;
maintainers = [ maintainers.juliendehos ];
};
}