Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
94 lines
2.7 KiB
Nix
94 lines
2.7 KiB
Nix
{
|
||
lib,
|
||
stdenv,
|
||
fetchFromGitHub,
|
||
fetchpatch,
|
||
libsForQt5,
|
||
yasm,
|
||
alsa-lib,
|
||
jemalloc,
|
||
libopus,
|
||
libpulseaudio,
|
||
withWebkit ? true,
|
||
}:
|
||
|
||
let
|
||
telegram-desktop = libsForQt5.callPackage ../telegram-desktop {
|
||
inherit stdenv;
|
||
# N/A on Qt5
|
||
kimageformats = null;
|
||
};
|
||
version = "1.4.9";
|
||
tg_owt = telegram-desktop.tg_owt.overrideAttrs (oldAttrs: {
|
||
version = "0-unstable-2024-06-15";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "desktop-app";
|
||
repo = "tg_owt";
|
||
rev = "c9cc4390ab951f2cbc103ff783a11f398b27660b";
|
||
hash = "sha256-FfWmSYaeryTDbsGJT3R7YK1oiyJcrR7YKKBOF+9PmpY=";
|
||
fetchSubmodules = true;
|
||
};
|
||
|
||
patches = [
|
||
(fetchpatch {
|
||
url = "https://webrtc.googlesource.com/src/+/e7d10047096880feb5e9846375f2da54aef91202%5E%21/?format=TEXT";
|
||
decode = "base64 -d";
|
||
stripLen = 1;
|
||
extraPrefix = "src/";
|
||
hash = "sha256-goxnuRRbwcdfIk1jFaKGiKCTCYn2saEj7En1Iyglzko=";
|
||
})
|
||
];
|
||
|
||
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ yasm ];
|
||
});
|
||
in
|
||
telegram-desktop.override {
|
||
pname = "kotatogram-desktop";
|
||
inherit withWebkit;
|
||
unwrapped = (telegram-desktop.unwrapped.override { inherit tg_owt; }).overrideAttrs (old: {
|
||
pname = "kotatogram-desktop-unwrapped";
|
||
version = "${version}-unstable-2024-09-27";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "kotatogram";
|
||
repo = "kotatogram-desktop";
|
||
rev = "0581eb6219343b3cfcbb81124b372df1039b7568";
|
||
hash = "sha256-rvn8GZmHdMkVutLUe/LmUNIawlb9VgU3sYhPwZ2MWsI=";
|
||
fetchSubmodules = true;
|
||
};
|
||
|
||
patches = [
|
||
./macos-qt5.patch
|
||
(fetchpatch {
|
||
url = "https://gitlab.com/mnauw/cppgir/-/commit/c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966.patch";
|
||
stripLen = 1;
|
||
extraPrefix = "cmake/external/glib/cppgir/";
|
||
hash = "sha256-8B4h3BTG8dIlt3+uVgBI569E9eCebcor9uohtsrZpnI=";
|
||
})
|
||
];
|
||
|
||
buildInputs = (old.buildInputs or [ ]) ++ [
|
||
alsa-lib
|
||
jemalloc
|
||
libopus
|
||
libpulseaudio
|
||
];
|
||
|
||
meta = {
|
||
description = "Kotatogram – experimental Telegram Desktop fork";
|
||
longDescription = ''
|
||
Unofficial desktop client for the Telegram messenger, based on Telegram Desktop.
|
||
|
||
It contains some useful (or purely cosmetic) features, but they could be unstable. A detailed list is available here: https://kotatogram.github.io/changes
|
||
'';
|
||
license = lib.licenses.gpl3Only;
|
||
platforms = lib.platforms.all;
|
||
homepage = "https://kotatogram.github.io";
|
||
changelog = "https://github.com/kotatogram/kotatogram-desktop/releases/tag/k${version}";
|
||
maintainers = with lib.maintainers; [ ilya-fedin ];
|
||
mainProgram = if stdenv.hostPlatform.isLinux then "kotatogram-desktop" else "Kotatogram";
|
||
};
|
||
});
|
||
}
|