2022-11-28T08:55:54 drogon 1.8.1 -> 1.8.2 https://repology.org/metapackage/drogon/versions 2022-11-28T08:55:57 attrpath: drogon 2022-11-28T08:55:57 Checking auto update branch... 2022-11-28T08:55:57 No auto update branch exists 2022-11-28T08:55:57 Old version 1.8.1" not present in master derivation file with contents: { stdenv, fetchFromGitHub, cmake, jsoncpp, libossp_uuid, zlib, lib # optional but of negligible size , openssl, brotli, c-ares # optional databases , sqliteSupport ? true, sqlite , postgresSupport ? false, postgresql , redisSupport ? false, hiredis , mysqlSupport ? false, libmysqlclient, mariadb }: stdenv.mkDerivation rec { pname = "drogon"; version = "1.8.2"; src = fetchFromGitHub { owner = "drogonframework"; repo = "drogon"; rev = "v${version}"; sha256 = "sha256-IpECYpPuheoLelEdgV+J26b+95fMfRmeQ44q6JvqRtw="; fetchSubmodules = true; }; nativeBuildInputs = [ cmake ]; cmakeFlags = [ "-DBUILD_TESTING=${if doInstallCheck then "ON" else "OFF"}" "-DBUILD_EXAMPLES=OFF" ]; propagatedBuildInputs = [ jsoncpp libossp_uuid zlib openssl brotli c-ares ] ++ lib.optional sqliteSupport sqlite ++ lib.optional postgresSupport postgresql ++ lib.optional redisSupport hiredis # drogon uses mariadb for mysql (see https://github.com/drogonframework/drogon/wiki/ENG-02-Installation#Library-Dependencies) ++ lib.optionals mysqlSupport [ libmysqlclient mariadb ]; patches = [ # this part of the test would normally fail because it attempts to configure a CMake project that uses find_package on itself # this patch makes drogon and trantor visible to the test ./fix_find_package.patch ]; # modifying PATH here makes drogon_ctl visible to the test installCheckPhase = '' cd .. PATH=$PATH:$out/bin bash test.sh ''; doInstallCheck = true; meta = with lib; { homepage = "https://github.com/drogonframework/drogon"; description = "C++14/17 based HTTP web application framework"; license = licenses.mit; maintainers = with maintainers; [ urlordjames ]; platforms = platforms.all; }; }