materialgram: init at 5.4.1.1

Co-authored-by: duvetfall <gh@myxa.me>
Co-authored-by: Kamilla 'ova <me@kamillaova.dev>
This commit is contained in:
oluceps 2024-06-21 14:18:48 +00:00
parent 0db241a291
commit 9e2357e0df
No known key found for this signature in database

View File

@ -0,0 +1,34 @@
{
telegram-desktop,
lib,
fetchFromGitHub,
}:
telegram-desktop.overrideAttrs (
finalAttrs: previousAttrs: {
pname = "materialgram";
version = "5.4.1.1";
src = fetchFromGitHub {
owner = "kukuruzka165";
repo = "materialgram";
rev = "refs/tags/v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-enA/8mIXcRTPGyZFgZ5Wg4fWq4fD4rtjH7bm/32FZaE";
};
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
];
mainProgram = "materialgram";
};
}
)