6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "sha256-k6RPg53z9iTrrKZXOm5Ga9qxI32mHgB+4d6y+IUvJC0=";
17 nativeBuildInputs = [ cmake ];
19 # Tests fail on darwin. See https://github.com/NixOS/nixpkgs/pull/105419#issuecomment-735826894
20 doCheck = !stdenv.isDarwin;
23 homepage = "https://oatpp.io/";
24 description = "Light and powerful C++ web framework for highly scalable and resource-efficient web applications";
25 license = licenses.asl20;
26 maintainers = [ maintainers.ivar ];
27 platforms = platforms.all;