File tree Expand file tree Collapse file tree 1 file changed +18
-13
lines changed
pkgs/applications/networking/instant-messengers/psi-plus Expand file tree Collapse file tree 1 file changed +18
-13
lines changed Original file line number Diff line number Diff line change 1414 hunspell ,
1515 libsecret ,
1616 libgcrypt ,
17- libotr ,
18- html-tidy ,
1917 libgpg-error ,
20- libsignal-protocol-c ,
2118 usrsctp ,
19+ qtkeychain ,
2220
2321 chatType ? "basic" , # See the assertion below for available options
2422 qtwebkit ,
2523 qtwebengine ,
2624
2725 enablePlugins ? true ,
26+ html-tidy ,
27+ http-parser ,
28+ libotr ,
29+ libomemo-c ,
2830
2931 # Voice messages
3032 voiceMessagesSupport ? true ,
3133 gst_all_1 ,
32-
3334 enablePsiMedia ? false ,
3435 pkg-config ,
3536} :
@@ -44,13 +45,13 @@ assert enablePsiMedia -> enablePlugins;
4445
4546mkDerivation rec {
4647 pname = "psi-plus" ;
47- version = "1.5.1653" ;
4848
49+ version = "1.5.2072" ;
4950 src = fetchFromGitHub {
5051 owner = "psi-plus" ;
5152 repo = "psi-plus-snapshots" ;
5253 rev = version ;
53- sha256 = "sha256-9WT2S6ZgIsrHoEAvlWUB078gzCdrPylvSjkkogU5tsU =" ;
54+ sha256 = "sha256-RlZwMBWjhCTEEV08UHbf8NvuqmuihXwR1aA/vMmD1BM =" ;
5455 } ;
5556
5657 cmakeFlags = [
@@ -80,16 +81,20 @@ mkDerivation rec {
8081 hunspell
8182 libsecret
8283 libgcrypt
83- libotr
84- html-tidy
8584 libgpg-error
86- libsignal-protocol-c
8785 usrsctp
86+ qtkeychain
8887 ]
8988 ++ lib . optionals voiceMessagesSupport [
9089 gst_all_1 . gst-plugins-base
9190 gst_all_1 . gst-plugins-good
9291 ]
92+ ++ lib . optionals enablePlugins [
93+ html-tidy
94+ http-parser
95+ libotr
96+ libomemo-c
97+ ]
9398 ++ lib . optionals ( chatType == "webkit" ) [
9499 qtwebkit
95100 ]
@@ -103,15 +108,15 @@ mkDerivation rec {
103108 )
104109 '' ;
105110
106- meta = with lib ; {
111+ meta = {
107112 homepage = "https://psi-plus.com" ;
108113 description = "XMPP (Jabber) client based on Qt5" ;
109114 mainProgram = "psi-plus" ;
110- maintainers = with maintainers ; [
115+ maintainers = with lib . maintainers ; [
111116 orivej
112117 unclechu
113118 ] ;
114- license = licenses . gpl2Only ;
115- platforms = platforms . linux ;
119+ license = lib . licenses . gpl2Only ;
120+ platforms = lib . platforms . linux ;
116121 } ;
117122}
You can’t perform that action at this time.
0 commit comments