lol

communi: 3.5.0 -> 3.6.0

authored by

Robert Schütz and committed by
Robert Schütz
e47f1d25 b0feee64

+7 -4
+7 -4
pkgs/applications/networking/irc/communi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "communi"; 5 - version = "3.5.0"; 5 + version = "3.6.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "communi"; 9 9 repo = "communi-desktop"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-Ua5uXs2mEDrljvtIcdn1Kb+l5NJtRpB0AAbBz+DU+YE="; 10 + # Without https://github.com/communi/communi-desktop/pull/146 fetching fails with 11 + # fatal: unable to connect to github.com: 12 + # github.com[0: 140.82.112.3]: errno=Connection timed out 13 + rev = "5d813dc6e64a623cd5d78f024c8a0720a5155a28"; 14 + hash = "sha256-ci91Bf0EkhlPDO+NcpnMmT/vE41i5RD2mXbRAnMB++M="; 12 15 fetchSubmodules = true; 13 16 }; 14 17 ··· 53 56 homepage = "https://github.com/communi/communi-desktop"; 54 57 license = licenses.bsd3; 55 58 maintainers = with maintainers; [ hrdinka ]; 56 - platforms = platforms.all; 59 + platforms = platforms.linux; 57 60 }; 58 61 }