Commit graph

1451 commits

Author SHA1 Message Date
Will Dietz 98cb225d9f nheko: 0.6.0 -> 0.6.1 2018-09-26 13:42:36 -05:00
Matthew Bauer 07cc937d60
Merge pull request #45934 from utdemir/master
bluejeans-gui: init at 1.6.39
2018-09-26 13:26:53 -05:00
Will Dietz a0248a0b68
Merge pull request #47365 from dtzWill/feature/matrix-clients
spectral: init at 2018-09-24; nheko: 0.5.0 -> 0.6.0 and bump dep mtxclient
2018-09-25 22:14:29 -05:00
Will Dietz 3ede6674a6 spectral: init at 2018-09-24
* needs at least qtgraphicaleffects not mentioned in docs
* doesn't want to use our libqmatrixclient, so let it use bundled
* took a few runs (or perhaps just patience with one) to populate,
  when my profile icon appeared it seemed ready-- then click it
  to see list of rooms and such.
2018-09-25 15:13:15 -05:00
Will Dietz ab2061bff3 nheko: 0.5.5 -> 0.6.0 2018-09-25 15:01:42 -05:00
gnidorah e79ccc1100 tdesktop: support opening urls under wayland 2018-09-25 20:26:46 +03:00
xeji ccd2862130
Merge pull request #47141 from vbgl/jackline-20180511
jackline: 2017-12-24 -> 2018-05-11
2018-09-23 23:29:10 +02:00
Sarah Brofeldt 7fb0194d41
Merge pull request #45161 from Gerschtli/update/ts3
teamspeak_server: 3.0.13.6 -> 3.3.0
2018-09-23 20:24:48 +02:00
Michael Weiss a526719184 signal-desktop: 1.16.1 -> 1.16.2 2018-09-21 21:46:41 +02:00
Vincent Laporte dbd5783791
jackline: 2017-12-24 -> 2018-05-11 2018-09-21 17:04:24 +00:00
Vincent Laporte 26aa4c36ba
ocamlPackages.erm_xmpp: 0.3 -> 0.3+20180112 2018-09-21 17:04:23 +00:00
Michael Weiss 3410dcd90e signal-desktop: 1.16.0 -> 1.16.1 2018-09-19 18:32:42 +02:00
R. RyanTM 9d288e7da3 qtox: 1.16.1 -> 1.16.3 (#46204)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
qtox
2018-09-18 18:12:37 +02:00
R. RyanTM 57062f9072 riot-web: 0.16.0 -> 0.16.2 (#46190)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
riot-web
2018-09-18 17:58:57 +02:00
Danylo Hlynskyi 969a39bd09 zoom-us: 2.3.128305.0716 -> 2.4.129780.0915, QT downgrade (#46778)
Qt 5.11 was downgraded to 5.9 because of two issues:
- spawns errors like
```
qrc:/qml/SignInWaiting.qml:20:9: QML BusyIndicator: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:26:9: QML Text: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:20:9: QML BusyIndicator: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:26:9: QML Text: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:20:9: QML BusyIndicator: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:26:9: QML Text: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:20:9: QML BusyIndicator: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:26:9: QML Text: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:20:9: QML BusyIndicator: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
qrc:/qml/SignInWaiting.qml:26:9: QML Text: Detected anchors on an item that is managed by a layout. This is undefined behavior; use Layout.alignment instead.
```
- Google login doesn't work. It just doesn't start embedded webbrowser
2018-09-17 16:06:44 +02:00
Franz Pletz d79e201851
matrique: init at 250 2018-09-15 15:25:49 +02:00
Stefan Siegl b6bfbafe5e linphone: add withGui option 2018-09-11 20:37:58 +02:00
Stefan Siegl 2f15843601 linphone: fix build of gtk ui 2018-09-11 20:37:58 +02:00
Franz Pletz ff8fc5c46c
nheko: 0.4.3 -> 0.5.5 2018-09-09 22:16:51 +02:00
Timo Kaufmann e326c0156d
Merge pull request #45728 from Ma27/nixos/weechat-module
nixos/weechat: add module
2018-09-07 17:19:46 +02:00
Maximilian Bosch a8efe61412
weechat: 2.1 -> 2.2; improve package configuration
This aims to make the `weechat` package even more configurable. It
allows to specify scripts and commands using the `configure` function
inside a `weechat.override` expression.

The package can be configured like this:

```
with import <nixpkgs> { };
weechat.override {
  plugins = { availablePlugins, ... }: {
    plugins = builtins.attrValues availablePlugins;

    init = ''
      /set foo bar
      /server add freenode chat.freenode.org
    '';

    scripts = [ "/path/to/script.py" ];
  };
}
```

All commands are passed to `weechat --run-command "/set foo bar;/server ..."`.

The `plugins' attribute is not necessarily required anymore, if it's
sufficient to add `init' commands, the `plugins' will be
`builtins.attrValues availablePlugins' by default.

Additionally the result contains `weechat` and `weechat-headless`
(introduced in WeeChat 2.1) now.
2018-09-07 13:10:43 +02:00
Michael Weiss 7c1b85cf6d signal-desktop: 1.15.5 -> 1.16.0 2018-09-06 12:38:27 +02:00
Jörg Thalheim de825a4eaa dino: 2018-07-08 -> 2018-09-05 2018-09-05 00:23:10 +01:00
Orivej Desh 205f3e941a swift-im: fix build with Qt 5.11 and split QtWebKit 2018-09-04 09:39:06 +00:00
Orivej Desh 6767396e38 psi-plus: 1.2.235 -> 1.3.410 2018-09-04 08:39:13 +00:00
Orivej Desh 0f1125975a psi: specify license (#43716) 2018-09-04 07:41:08 +00:00
xeji 28def75a10
Merge pull request #45967 from worldofpeace/various-build-fixes/18.09
Various build fixes
2018-09-03 22:28:06 +02:00
Vladimír Čunát 956790acaf
Merge #45974: purple-matrix: 2016-07-11 -> 2018-08-02 2018-09-03 16:14:17 +02:00
Symphorien Gibol 7de2b6240b purple-matrix: 2016-07-11 -> 2018-08-02
This also fixes the build.
2018-09-03 14:13:00 +02:00
worldofpeace 451e04fb4d SkypeExport: fix build 2018-09-02 18:59:23 -04:00
Utku Demir 7fbfba7c66
bluejeans-gui: init at 1.6.39 2018-09-02 19:22:07 +12:00
Markus Kowalewski c6e31608d7
tox-prpl: update homepage 2018-09-02 00:28:54 +02:00
John Ericson 2c2f1e37d4 reewide: Purge all uses stdenv.system and top-level system
It is deprecated and will be removed after 18.09.
2018-08-30 17:20:32 -04:00
Michael Weiss 256e347dfe signal-desktop-beta: remove
This package was marked as broken since
9cb0b49673.
Reason: The package is outdated and keeping up with the beta releases
isn't really worth it (there are regular stable releases).
2018-08-29 17:28:58 +02:00
Michael Weiss 792425934b tdesktop: 1.3.13 -> 1.3.14
tdesktopPackages.preview: 1.3.13 -> 1.3.14
2018-08-28 18:12:11 +02:00
Michael Weiss 9006cd339c tdesktop: 1.3.10 -> 1.3.13
tdesktopPackages.preview: 1.3.12 -> 1.3.13
2018-08-28 11:05:48 +02:00
adisbladis 213f7ec054
weechat-matrix-bridge: 2018-01-10 -> 2018-05-29 2018-08-27 16:23:33 +08:00
Emmanuel Rosa 81d5061a19 skypeforlinux: 8.24.0.2 -> 8.28.0.41 2018-08-26 10:02:28 +07:00
Jörg Thalheim 084078dd39
Merge pull request #45547 from r-ryantm/auto-update/pidgin-sipe
pidgin-sipe: 1.23.2 -> 1.23.3
2018-08-24 09:56:36 +01:00
R. RyanTM d80bab8789 pidgin-sipe: 1.23.2 -> 1.23.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pidgin-sipe/versions.
2018-08-23 23:19:14 -07:00
Tim Steinbach 873290154a
hipchat: 4.30.5.1676 -> 4.30.5.1682 2018-08-23 09:54:59 -04:00
Vladimír Čunát 153a19df05
Merge branch 'master' into staging-next
Hydra: ?compare=1474536
2018-08-20 09:15:33 +02:00
Jan Tojnar 2801a299be
skypeforlinux: fix borked cherry-picking 2018-08-19 15:08:10 +02:00
Zack Grannan 3b2f3e59d1
skypeforlinux: add gsettings schemas
cherry-picked and squashed from https://github.com/NixOS/nixpkgs/pull/44652
2018-08-19 15:04:03 +02:00
Daiderd Jordan bbd9a9deb0
Merge pull request #45300 from thefloweringash/quaternion-darwin
quaternion: Darwin support, fix dependencies and installed outputs
2018-08-19 13:15:44 +02:00
Andrew Childs 07eebd3629 quaternion: Darwin support, fix dependencies and installed outputs 2018-08-19 11:58:24 +09:00
Orivej Desh 65663f883c msgpack: rename from libmsgpack
The project does not use the name "libmsgpack". It variously uses "msgpack" and
"msgpack-c", and "msgpackc" for the name of the library.
2018-08-18 23:19:54 +00:00
Silvan Mosberger 955f391e29
Merge pull request #45149 from r-ryantm/auto-update/riot-web
riot-web: 0.15.7 -> 0.16.0
2018-08-18 20:50:38 +02:00
Vladimír Čunát 14aa936ec5
Merge branch 'staging-next' into staging 2018-08-17 20:53:27 +02:00
Vladimír Čunát cbabebcc2e
Merge branch 'master' into staging-next
Hydra: ?compare=1473892
2018-08-17 13:45:21 +02:00