Skip to content

Commit 537944e

Browse files
committedJun 14, 2017
gajim: 0.16.7 -> 0.16.8
1 parent cc0ce6b commit 537944e

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed
 

‎pkgs/applications/networking/instant-messengers/gajim/default.nix

+5-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ with stdenv.lib;
2525

2626
stdenv.mkDerivation rec {
2727
name = "gajim-${version}";
28-
version = "0.16.7";
28+
version = "0.16.8";
2929

3030
src = fetchurl {
3131
name = "${name}.tar.bz2";
3232
url = "https://dev.gajim.org/gajim/gajim/repository/archive.tar.bz2?"
3333
+ "ref=${name}";
34-
sha256 = "18srrsswq09i54gcqqy0ylmrix1rrq43f0b8sz1lijr39h3ayw3j";
34+
sha256 = "009cpzqh4zy7hc9pq3r5m4lgagwawhjab13rjzavb0n9ggijcscb";
3535
};
3636

3737
patches = let
@@ -42,11 +42,12 @@ stdenv.mkDerivation rec {
4242
# sha256 = "<replace-with-sha256>";
4343
#};
4444
};
45-
in mapAttrsToList (name: { rev, sha256 }: fetchurl {
45+
in (mapAttrsToList (name: { rev, sha256 }: fetchurl {
4646
name = "gajim-${name}.patch";
4747
url = "https://dev.gajim.org/gajim/gajim/commit/${rev}.diff";
4848
inherit sha256;
49-
}) cherries;
49+
}) cherries)
50+
++ [./fix-tests.patch]; # https://dev.gajim.org/gajim/gajim/issues/8660
5051

5152
postPatch = ''
5253
sed -i -e '0,/^[^#]/ {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/src/common/gajim.py b/src/common/gajim.py
2+
index 4a5d884b6..95d401b67 100644
3+
--- a/src/common/gajim.py
4+
+++ b/src/common/gajim.py
5+
@@ -415,7 +415,7 @@ def get_jid_from_account(account_name, full=False):
6+
jid = name + '@' + hostname
7+
if full:
8+
resource = connections[account_name].server_resource
9+
- jid += '/' + resource
10+
+ jid += '/' + str(resource)
11+
return jid
12+
13+
def get_our_jids():

3 commit comments

Comments
 (3)

Mic92 commented on Jun 14, 2017

@Mic92
MemberAuthor

@aszlig might be worth a back-port: https://dev.gajim.org/gajim/gajim/blob/gajim-0.16.8/ChangeLog
what do you think?

aszlig commented on Jun 19, 2017

@aszlig
Member

@Mic92: Which point of that changelog do you mean exactly?

Mic92 commented on Jun 19, 2017

@Mic92
MemberAuthor

Gajim is not the most reliable software. Fortunately development seems to speedup again and changes made in this minor release improve stability (gnupg-compatibilty in my case).

Please sign in to comment.