From 52e41dafee17ed0bf43f2636ffff4d28ccdf2af3 Mon Sep 17 00:00:00 2001 From: Aditya Date: Mon, 11 Mar 2024 09:28:20 +0530 Subject: [PATCH 1/2] maintainers: add clot27 --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ffc6768fea01..a4e29305c344 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3663,6 +3663,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"; From 7257398f828aea4556e83f411e7ef7fe482464d4 Mon Sep 17 00:00:00 2001 From: Aditya Date: Mon, 11 Mar 2024 10:09:21 +0530 Subject: [PATCH 2/2] _64gram: init at 1.1.15 --- pkgs/by-name/_6/_64gram/package.nix | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/_6/_64gram/package.nix diff --git a/pkgs/by-name/_6/_64gram/package.nix b/pkgs/by-name/_6/_64gram/package.nix new file mode 100644 index 000000000000..28ea269965bd --- /dev/null +++ b/pkgs/by-name/_6/_64gram/package.nix @@ -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; + }; +})