mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
485c4ed4e5
Diff: https://github.com/kukuruzka165/materialgram/compare/refs/tags/v5.5.4.1...v5.6.1.1 Changelog: https://github.com/kukuruzka165/materialgram/releases/tag/v5.6.1.1
35 lines
1022 B
Nix
35 lines
1022 B
Nix
{
|
|
telegram-desktop,
|
|
lib,
|
|
fetchFromGitHub,
|
|
}:
|
|
telegram-desktop.overrideAttrs (
|
|
finalAttrs: previousAttrs: {
|
|
pname = "materialgram";
|
|
version = "5.6.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kukuruzka165";
|
|
repo = "materialgram";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-e2ZLUooPMs0qB97BDyCiOUeD7cc+MuF5of65mEeJr04=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|
|
)
|