mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
26 lines
729 B
Nix
26 lines
729 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gperf, openssl, zlib }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "telegram-bot-api";
|
|
version = "7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "telegram-bot-api";
|
|
owner = "tdlib";
|
|
rev = "5951bfbab8b1274437c613c1c48d91be2a050371";
|
|
hash = "sha256-5aNZqP4K+zP7q1+yllr6fysEcewhh/V9Vl6GXQolanI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake gperf ];
|
|
buildInputs = [ openssl zlib ];
|
|
|
|
meta = with lib; {
|
|
description = "Telegram Bot API server";
|
|
homepage = "https://github.com/tdlib/telegram-bot-api";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ Anillc Forden ];
|
|
platforms = platforms.all;
|
|
mainProgram = "telegram-bot-api";
|
|
};
|
|
}
|