Merge pull request #294909 from clot27/init-64gram

_64gram: init at 1.1.15
This commit is contained in:
Aleksana 2024-04-02 19:09:20 +08:00 committed by GitHub
commit 4ae5f28f76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -3693,6 +3693,13 @@
githubId = 46303707;
name = "Christian Lütke-Stetzkamp";
};
clot27 = {
name = "Clot";
email = "adityayadav11082@protonmail.com";
github = "clot27";
githubId = 69784758;
matrix = "@clot27:matrix.org";
};
clr-cera = {
email = "clrcera05@gmail.com";
github = "clr-cera";

View File

@ -0,0 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
, telegram-desktop
}:
telegram-desktop.overrideAttrs (old: rec {
pname = "64Gram";
version = "1.1.15";
src = fetchFromGitHub {
owner = "TDesktop-x64";
repo = "tdesktop";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-3HLRv8RTyyfnjMF7w+euSOj6SbxlxOuczap5Nlizsvg=";
};
meta = with lib; {
description = "An unofficial Telegram Desktop providing Windows 64bit build and extra features";
license = licenses.gpl3Only;
platforms = platforms.all;
homepage = "https://github.com/TDesktop-x64/tdesktop";
changelog = "https://github.com/TDesktop-x64/tdesktop/releases/tag/v${version}";
maintainers = with maintainers; [ clot27 ];
mainProgram = "telegram-desktop";
broken = stdenv.isDarwin;
};
})