about summary refs log tree commit diff
path: root/pkgs/by-name/_6
diff options
context:
space:
mode:
authorAditya <adityayadav11082@gmail.com>2024-03-11 10:09:21 +0530
committerAditya <adityayadav11082@gmail.com>2024-04-02 16:29:37 +0530
commit7257398f828aea4556e83f411e7ef7fe482464d4 (patch)
tree227832a844b114f36a92963072e1b9d6bfd66bdd /pkgs/by-name/_6
parent52e41dafee17ed0bf43f2636ffff4d28ccdf2af3 (diff)
_64gram: init at 1.1.15
Diffstat (limited to 'pkgs/by-name/_6')
-rw-r--r--pkgs/by-name/_6/_64gram/package.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/by-name/_6/_64gram/package.nix b/pkgs/by-name/_6/_64gram/package.nix
new file mode 100644
index 0000000000000..28ea269965bdf
--- /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;
+  };
+})