Merge pull request #209380 from wegank/cppcms-bump

cppcms: 1.2.1 -> 2.0.0.beta2
This commit is contained in:
Thiago Kenji Okada 2023-01-07 13:05:59 +00:00 committed by GitHub
commit ea49b7bdde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,16 @@
{ lib, stdenv, fetchurl, cmake, pcre, zlib, python2, openssl }:
{ lib, stdenv, fetchurl, cmake, pcre, zlib, python3, openssl }:
stdenv.mkDerivation rec {
pname = "cppcms";
version = "1.2.1";
version = "2.0.0.beta2";
src = fetchurl {
url = "mirror://sourceforge/cppcms/${pname}-${version}.tar.bz2";
sha256 = "0lmcdjzicmzhnr8pa0q3f5lgapz2cnh9w0dr56i4kj890iqwgzhh";
url = "mirror://sourceforge/cppcms/${pname}-${version}.tar.bz2";
sha256 = "sha256-aXAxx9FB/dIVxr5QkLZuIQamO7PlLwnugSDo78bAiiE=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ pcre zlib python2 openssl ];
buildInputs = [ pcre zlib python3 openssl ];
strictDeps = true;
@ -21,9 +21,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "http://cppcms.com";
description = "High Performance C++ Web Framework";
platforms = platforms.linux ;
license = licenses.lgpl3;
platforms = platforms.linux;
license = licenses.mit;
maintainers = [ maintainers.juliendehos ];
};
}