depot/third_party/nixpkgs/pkgs/development/libraries/cppcms/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
661 B
Nix

{ lib, 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";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ pcre zlib python openssl ];
cmakeFlags = [
"--no-warn-unused-cli"
];
meta = with lib; {
homepage = "http://cppcms.com";
description = "High Performance C++ Web Framework";
platforms = platforms.linux ;
license = licenses.lgpl3;
maintainers = [ maintainers.juliendehos ];
};
}