about summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/communi
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-06-10 23:38:57 +0000
committerRobert Schütz <github@dotlambda.de>2022-06-30 22:38:39 +0000
commite47f1d2527f6109ea74940f01fcfe168a00bc5f7 (patch)
treee04c4ba664172c6c333823db9b569edad6bdc652 /pkgs/applications/networking/irc/communi
parentb0feee646713c08da547723ef483f5de0ee75491 (diff)
communi: 3.5.0 -> 3.6.0
Diffstat (limited to 'pkgs/applications/networking/irc/communi')
-rw-r--r--pkgs/applications/networking/irc/communi/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix
index c8c36049a2a40..b9321f0797fa2 100644
--- a/pkgs/applications/networking/irc/communi/default.nix
+++ b/pkgs/applications/networking/irc/communi/default.nix
@@ -2,13 +2,16 @@
 
 stdenv.mkDerivation rec {
   pname = "communi";
-  version = "3.5.0";
+  version = "3.6.0";
 
   src = fetchFromGitHub {
     owner = "communi";
     repo = "communi-desktop";
-    rev = "v${version}";
-    sha256 = "sha256-Ua5uXs2mEDrljvtIcdn1Kb+l5NJtRpB0AAbBz+DU+YE=";
+    # Without https://github.com/communi/communi-desktop/pull/146 fetching fails with
+    #     fatal: unable to connect to github.com:
+    #     github.com[0: 140.82.112.3]: errno=Connection timed out
+    rev = "5d813dc6e64a623cd5d78f024c8a0720a5155a28";
+    hash = "sha256-ci91Bf0EkhlPDO+NcpnMmT/vE41i5RD2mXbRAnMB++M=";
     fetchSubmodules = true;
   };
 
@@ -53,6 +56,6 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/communi/communi-desktop";
     license = licenses.bsd3;
     maintainers = with maintainers; [ hrdinka ];
-    platforms = platforms.all;
+    platforms = platforms.linux;
   };
 }