Files
nixos/packages/tgbot-cpp.nix
2025-02-27 14:52:35 +08:00

9 lines
257 B
Nix

{ stdenv, src, cmake, pkg-config, boost, openssl, zlib, curl }: stdenv.mkDerivation rec
{
name = "tgbot-cpp";
inherit src;
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost openssl zlib curl ];
propagatedBuildInputs = buildInputs;
}