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
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
telegram-desktop,
|
|
fetchFromGitHub,
|
|
withWebkit ? true,
|
|
}:
|
|
|
|
telegram-desktop.override {
|
|
pname = "materialgram";
|
|
inherit withWebkit;
|
|
unwrapped = telegram-desktop.unwrapped.overrideAttrs (
|
|
finalAttrs: previousAttrs: {
|
|
pname = "materialgram-unwrapped";
|
|
version = "6.1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kukuruzka165";
|
|
repo = "materialgram";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-LUmO2KONOhfi0i1ABu3nB2RSgybF/cBWw8Pk6ULGza4=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
meta = previousAttrs.meta // {
|
|
description = "Telegram Desktop fork with material icons and some improvements";
|
|
longDescription = ''
|
|
Telegram Desktop fork with Material Design and other improvements,
|
|
which is based on the Telegram API and the MTProto secure protocol.
|
|
'';
|
|
homepage = "https://kukuruzka165.github.io/materialgram/";
|
|
changelog = "https://github.com/kukuruzka165/materialgram/releases/tag/v${finalAttrs.version}";
|
|
maintainers = with lib.maintainers; [
|
|
oluceps
|
|
aleksana
|
|
stellessia
|
|
];
|
|
mainProgram = "materialgram";
|
|
};
|
|
}
|
|
);
|
|
}
|